summaryrefslogtreecommitdiffstats
path: root/kde/kdebase-workspace/kdm
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2011-04-11 13:37:10 +0200
committertnut <tnut at nutyx dot com>2011-04-11 13:37:10 +0200
commitc2c7583fcc6bf88fbb03ec24c7b2d5a11b675728 (patch)
tree3439093092307f32f895b1f365fa430c10a5fb89 /kde/kdebase-workspace/kdm
parent0b59a35ca7958e4f0343f1cb9ab9449ead7b687c (diff)
downloadnutyx-pakxe-c2c7583fcc6bf88fbb03ec24c7b2d5a11b675728.tar.gz
nutyx-pakxe-c2c7583fcc6bf88fbb03ec24c7b2d5a11b675728.tar.bz2
nutyx-pakxe-c2c7583fcc6bf88fbb03ec24c7b2d5a11b675728.tar.xz
nutyx-pakxe-c2c7583fcc6bf88fbb03ec24c7b2d5a11b675728.zip
kdebase-workspace, maj 4.6.2-3
Diffstat (limited to 'kde/kdebase-workspace/kdm')
-rw-r--r--kde/kdebase-workspace/kdm36
1 files changed, 0 insertions, 36 deletions
diff --git a/kde/kdebase-workspace/kdm b/kde/kdebase-workspace/kdm
deleted file mode 100644
index 799d58f4b..000000000
--- a/kde/kdebase-workspace/kdm
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=$(pidof -o %PPID /usr/bin/kdm)
-case "$1" in
- start)
- stat_busy "Starting KDE Desktop Manager"
- [ -z "$PID" ] && /usr/bin/kdm &>/dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon kdm
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping KDE Desktop Manager"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon kdm
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 3
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0