summaryrefslogtreecommitdiffstats
path: root/kde3/kdebase3/kdm
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2011-02-10 16:44:24 +0100
committertnut <thierryn1 at hispeed dot ch>2011-02-10 16:44:24 +0100
commit0ced19673687426364db0a20d2dc1c215e752c0f (patch)
tree88a9535a7d350322e55fc3b8b02c4162b2c64ccc /kde3/kdebase3/kdm
parentc0f1c161cd53f60f384ec577198c7075ae00e35d (diff)
downloadnutyx-pakxe-0ced19673687426364db0a20d2dc1c215e752c0f.tar.gz
nutyx-pakxe-0ced19673687426364db0a20d2dc1c215e752c0f.tar.bz2
nutyx-pakxe-0ced19673687426364db0a20d2dc1c215e752c0f.tar.xz
nutyx-pakxe-0ced19673687426364db0a20d2dc1c215e752c0f.zip
kde3, suppression des ports
Diffstat (limited to 'kde3/kdebase3/kdm')
-rwxr-xr-xkde3/kdebase3/kdm38
1 files changed, 0 insertions, 38 deletions
diff --git a/kde3/kdebase3/kdm b/kde3/kdebase3/kdm
deleted file mode 100755
index cde5d8087..000000000
--- a/kde3/kdebase3/kdm
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-# Begin $rc_base/init.d/kdm
-
-# $Id: kdm,v 1.4 2008/01/20 22:50:09 install Exp install $
-
-. /etc/sysconfig/rc
-. $rc_functions
-pidfile=/var/run/kdm.pid
-case "$1" in
- start)
- boot_mesg "Starting KDM"
- export HOME=/root
- cd $HOME
- loadproc /opt/kde/bin/kdm
- ;;
- stop)
- 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
- ;;
- *)
- echo "Usage: $0 start|stop|restart"
- ;;
-esac
-
-# End of file
-