From: root Samara Date: Mon, 18 Jan 2016 14:21:20 +0000 (+0100) Subject: saving uncommitted changes in /etc prior to emerge run X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=08d2cf3aac67c2c96b82c7966d73bfbdbf8856fc;p=config%2Fsamara%2Fetc.git saving uncommitted changes in /etc prior to emerge run --- diff --git a/init.d/vde b/init.d/vde index 6400f9b..9a1500e 100755 --- a/init.d/vde +++ b/init.d/vde @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vde/files/vde.init,v 1.4 2010/01/12 12:58:36 dang Exp $ +# $Id$ depend() { after net.${VDE_TAP} @@ -10,7 +10,7 @@ depend() { start() { ebegin "Starting vde" - [ "${VDE_MODPROBE_TUN}" == "yes" ] && modprobe tun + [ "${VDE_MODPROBE_TUN}" = "yes" ] && modprobe tun start-stop-daemon --start --quiet \ --exec /usr/bin/vde_switch -- ${VDE_OPTS} eend $? "Failed to start vde" @@ -20,7 +20,7 @@ start() { stop() { ebegin "Stopping vde" - [ "${VDE_MODPROBE_TUN}" == "yes" ] && modprobe -r tun start-stop-daemon --stop --quiet --exec /usr/bin/vde_switch + [ "${VDE_MODPROBE_TUN}" = "yes" ] && modprobe -r tun eend $? "Failed to stop vde" }