summaryrefslogtreecommitdiffstats
path: root/kde/kdebase-workspace
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-07-04 21:18:43 +0200
committertnut <thierryn1 at hispeed dot ch>2010-07-04 21:18:43 +0200
commit5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460 (patch)
treea4d6d395efb37315cc115b45cac3f8605009c3f5 /kde/kdebase-workspace
parentab1c264f0015502ddd6dce15ffbc80ef6307773f (diff)
downloadnutyx-pakxe-5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460.tar.gz
nutyx-pakxe-5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460.tar.bz2
nutyx-pakxe-5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460.tar.xz
nutyx-pakxe-5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460.zip
kde, suppression de fichiers obsolètes
Diffstat (limited to 'kde/kdebase-workspace')
-rwxr-xr-xkde/kdebase-workspace/kdm33
1 files changed, 0 insertions, 33 deletions
diff --git a/kde/kdebase-workspace/kdm b/kde/kdebase-workspace/kdm
deleted file mode 100755
index 80ab876ba..000000000
--- a/kde/kdebase-workspace/kdm
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-# Begin $rc_base/init.d/xdm
-
-# $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
- /usr/bin/kdm
- ;;
- stop)
- boot_mesg "Stopping KDM"
- if [ -f $pidfile ]; then
- kill `cat $pidfile`
- rm $pidfile
- fi
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "Usage: $0 start|stop|restart"
- ;;
-esac
-
-# End of file
-