Commit e99f9898 authored by Matt Tucker's avatar Matt Tucker Committed by matt

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7528 b35dd754-fafc-0310-a699-88a17e54d16e
parent e1344b52
/etc/ /etc/
/opt/wildfire /opt/
/var/log/wildfire /var/log/wildfire
...@@ -30,14 +30,14 @@ set -e ...@@ -30,14 +30,14 @@ set -e
case "$1" in case "$1" in
start) start)
echo -n "Starting $DESC: " echo -n "Starting $DESC: "
start-stop-daemon --start --quiet --background \ start-stop-daemon --start --quiet --oknodo --background \
--pidfile /var/run/$NAME.pid --make-pidfile \ --pidfile /var/run/$NAME.pid --make-pidfile \
--exec $DAEMON -- $DAEMON_OPTS --exec $DAEMON -- $DAEMON_OPTS
echo "$NAME." echo "$NAME."
;; ;;
stop) stop)
echo -n "Stopping $DESC: " echo -n "Stopping $DESC: "
start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \ start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/$NAME.pid \
--exec $DAEMON --exec $DAEMON
echo "$NAME." echo "$NAME."
;; ;;
......
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