Commit d6e0148e authored by Ingvar Hagelund's avatar Ingvar Hagelund

Fixed an error in the argument passing from the init script. Added some more...

Fixed an error in the argument passing from the init script. Added some more info text to the stop action.

git-svn-id: http://www.varnish-cache.org/svn/trunk@3130 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 8e7fedf3
......@@ -62,7 +62,7 @@ start() {
return 6
else
# Varnish always gives output on STDOUT
daemon $exec "$DAEMON_OPTS" --pidfile $pidfile > /dev/null 2>&1
daemon --pidfile $pidfile $exec "$DAEMON_OPTS" > /dev/null 2>&1
retval=$?
if [ $retval -eq 0 ]
then
......@@ -77,7 +77,7 @@ start() {
}
stop() {
echo -n "Stopping $prog: "
echo -n "Stopping varnish HTTP accelerator: "
killproc $prog
retval=$?
echo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment