Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/libvirt/files: libvirtd.init-r2
Date: Fri, 28 Jan 2011 22:01:00
Message-Id: 20110128220049.52F0520054@flycatcher.gentoo.org
1 cardoe 11/01/28 22:00:49
2
3 Modified: libvirtd.init-r2
4 Log:
5 Fix typo in if statement
6
7 (Portage version: 2.1.9.35/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 app-emulation/libvirt/files/libvirtd.init-r2
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/files/libvirtd.init-r2?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/files/libvirtd.init-r2?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/files/libvirtd.init-r2?r1=1.1&r2=1.2
15
16 Index: libvirtd.init-r2
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/files/libvirtd.init-r2,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- libvirtd.init-r2 27 Jan 2011 21:02:56 -0000 1.1
23 +++ libvirtd.init-r2 28 Jan 2011 22:00:49 -0000 1.2
24 @@ -87,8 +87,8 @@
25 fi
26
27 NET_COUNT="$(libvirtd_net_count)"
28 - if [ "${LIBVIRTD_NET_SHUTDOWN}" != "no" \
29 - && "${NET_COUNT}" != "0" ]; then
30 + if [ "${LIBVIRTD_NET_SHUTDOWN}" != "no" ] \
31 + && [ "${NET_COUNT}" != "0" ]; then
32
33 einfo " Shutting down network(s):"
34 for NET_NAME in $(libvirtd_net_list); do