From: Keith Amidon Date: Mon, 16 Mar 2009 20:29:49 +0000 (-0700) Subject: No longer need secchan to be on the executable search path for vswitchd X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f88ac609060b1b9735c8cf33133eb03301ef345f;p=openvswitch No longer need secchan to be on the executable search path for vswitchd --- diff --git a/vswitchd/etc/init.d/vswitch b/vswitchd/etc/init.d/vswitch index ac559396..e6956d50 100755 --- a/vswitchd/etc/init.d/vswitch +++ b/vswitchd/etc/init.d/vswitch @@ -50,7 +50,7 @@ function start { fi fi [ "$1" = "restart" ] || clear_old_bridge_ports - PATH=$VSWITCH_BASE/secchan:$PATH action "Starting vswitchd" nice -n "$PRIORITY" $VSWITCH_BASE/vswitchd/vswitchd -P/var/run/vswitchd.pid -D -vANY:CONSOLE:EMER $syslog_opt $logfile_level_opt $logfile_file_opt --brcompat $leak_opt "$VSWITCHD_CONF" + action "Starting vswitchd" nice -n "$PRIORITY" $VSWITCH_BASE/vswitchd/vswitchd -P/var/run/vswitchd.pid -D -vANY:CONSOLE:EMER $syslog_opt $logfile_level_opt $logfile_file_opt --brcompat $leak_opt "$VSWITCHD_CONF" if [ "$1" = "restart" ]; then sleep 2 # Give time for vswitch to get up and running. i=0