summaryrefslogtreecommitdiff
path: root/testing/kdebase-workspace/kdm
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-06-28 00:01:48 +0000
committerroot <root@rshg054.dnsready.net>2012-06-28 00:01:48 +0000
commitad4cbb616af1b40790c6533f1d5b98dbd7aaa199 (patch)
treebb9eaf0dec4bf5c449ccc9236b02ea993f69f9fe /testing/kdebase-workspace/kdm
parent5aee7ab49f65d6fee1182bfcacf92192ad36c4af (diff)
Thu Jun 28 00:01:48 UTC 2012
Diffstat (limited to 'testing/kdebase-workspace/kdm')
-rw-r--r--testing/kdebase-workspace/kdm36
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/kdebase-workspace/kdm b/testing/kdebase-workspace/kdm
new file mode 100644
index 000000000..799d58f4b
--- /dev/null
+++ b/testing/kdebase-workspace/kdm
@@ -0,0 +1,36 @@
+#!/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