Index: debian_installer/lams2-2.1rc1/debian/lams2.init =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2-2.1rc1/debian/Attic/lams2.init,v diff -u -r1.1 -r1.2 --- debian_installer/lams2-2.1rc1/debian/lams2.init 9 Apr 2008 01:30:33 -0000 1.1 +++ debian_installer/lams2-2.1rc1/debian/lams2.init 14 Apr 2008 05:10:40 -0000 1.2 @@ -62,7 +62,6 @@ #set -e - start() { start-stop-daemon --start --quiet --background --make-pidfile \ --pidfile /var/run/$NAME.pid --chuid lams:lams \ @@ -72,17 +71,18 @@ stop() { start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid - } case "$1" in start) - echo "Starting $DESC: " + echo "$DESC is starting up." start ;; stop) - echo "Stopping $DESC: " + echo -n "Stopping $DESC... " stop + rm -f /var/run/$NAME.pid + echo "stopped." ;; status) if [ -e /var/run/$NAME.pid ]; then @@ -97,6 +97,7 @@ fi fi fi + echo "$DESC is not running." ;; restart|force-reload) #