Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/miredo/files: miredo.rc
Date: Tue, 31 Aug 2010 11:21:38
Message-Id: 20100831112122.9B4A920054@flycatcher.gentoo.org
1 xmw 10/08/31 11:21:22
2
3 Modified: miredo.rc
4 Log:
5 Revision bump to fix bug #335297
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 net-misc/miredo/files/miredo.rc
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/miredo/files/miredo.rc?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/miredo/files/miredo.rc?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/miredo/files/miredo.rc?r1=1.1&r2=1.2
14
15 Index: miredo.rc
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-misc/miredo/files/miredo.rc,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- miredo.rc 3 May 2010 09:59:23 -0000 1.1
22 +++ miredo.rc 31 Aug 2010 11:21:22 -0000 1.2
23 @@ -10,8 +10,8 @@
24
25 start() {
26 ebegin "Starting Miredo"
27 - [ "${MIREDO_MODPROBE_IPV6}" == "yes" ] && modprobe ipv6
28 - [ "${MIREDO_MODPROBE_TUN}" == "yes" ] && modprobe tun
29 + test "${MIREDO_MODPROBE_IPV6}" = "yes" && modprobe ipv6
30 + test "${MIREDO_MODPROBE_TUN}" = "yes" && modprobe tun
31 start-stop-daemon --start --quiet --exec /usr/sbin/miredo -- \
32 ${MIREDO_OPTS}
33 eend $?