diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-10-03 15:36:49 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-10-03 15:36:49 +0200 |
commit | 3d9b88071fa0fc5364a3ce154e486c52e37fb122 (patch) | |
tree | 6cc214de1758fc16bde784def8a8f2c6c6fa4bb3 /kde3/kdebase3/kdm | |
parent | 5cf84df9c8c93cf04cec50aef9530f7bdc416b7d (diff) | |
download | nutyx-extra-3d9b88071fa0fc5364a3ce154e486c52e37fb122.tar.gz nutyx-extra-3d9b88071fa0fc5364a3ce154e486c52e37fb122.tar.bz2 nutyx-extra-3d9b88071fa0fc5364a3ce154e486c52e37fb122.tar.xz nutyx-extra-3d9b88071fa0fc5364a3ce154e486c52e37fb122.zip |
maj kdebase3#3.5.10-3
Diffstat (limited to 'kde3/kdebase3/kdm')
-rwxr-xr-x | kde3/kdebase3/kdm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/kde3/kdebase3/kdm b/kde3/kdebase3/kdm index c2cb44eca..cde5d8087 100755 --- a/kde3/kdebase3/kdm +++ b/kde3/kdebase3/kdm @@ -14,12 +14,17 @@ case "$1" in loadproc /opt/kde/bin/kdm ;; stop) - boot_mesg "Stopping KDM" if [ -f $pidfile ]; then + boot_mesg "Stopping KDM" kill `cat $pidfile` rm $pidfile + else + statusproc /opt/kde/bin/kdm fi ;; + status) + statusproc /opt/kde/bin/kdm + ;; restart) $0 stop $0 start |