summaryrefslogtreecommitdiff
path: root/testing/kdebase-workspace/kdm
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-07-11 18:35:04 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-07-11 18:35:04 +0000
commit1a1b748f1738b1989a834d75b1623be21bf9bab5 (patch)
treed99e645120dc197bc3bcbcd96b1bb89e4e68bf4f /testing/kdebase-workspace/kdm
parent139460a7a8b085588b699c488fd19b166db18a74 (diff)
Mon Jul 11 18:34:51 UTC 2011
Diffstat (limited to 'testing/kdebase-workspace/kdm')
-rw-r--r--testing/kdebase-workspace/kdm36
1 files changed, 0 insertions, 36 deletions
diff --git a/testing/kdebase-workspace/kdm b/testing/kdebase-workspace/kdm
deleted file mode 100644
index 799d58f4b..000000000
--- a/testing/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