summaryrefslogtreecommitdiffstats
path: root/xorg-xdm/xdm
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot org>2012-04-03 18:00:38 +0200
committertnut <tnut at nutyx dot org>2012-04-03 18:00:38 +0200
commite9ef802a013ac393a057134f1fdaad745aa38573 (patch)
tree456fbbdf9f1d214f1e1b02d744214ccfa128dcd8 /xorg-xdm/xdm
parent3adfb88f09f6b015bb071ba65190d69afde8db21 (diff)
downloadnutyx-extra-e9ef802a013ac393a057134f1fdaad745aa38573.tar.gz
nutyx-extra-e9ef802a013ac393a057134f1fdaad745aa38573.tar.bz2
nutyx-extra-e9ef802a013ac393a057134f1fdaad745aa38573.tar.xz
nutyx-extra-e9ef802a013ac393a057134f1fdaad745aa38573.zip
xorg dans nutyx-pakxe , la base
Diffstat (limited to 'xorg-xdm/xdm')
-rwxr-xr-xxorg-xdm/xdm23
1 files changed, 0 insertions, 23 deletions
diff --git a/xorg-xdm/xdm b/xorg-xdm/xdm
deleted file mode 100755
index 60d591a20..000000000
--- a/xorg-xdm/xdm
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# /etc/rc.d/xdm: start/stop xdm
-#
-
-case $1 in
-start)
- /usr/bin/xdm
- ;;
-stop)
- killall -q /usr/bin/xdm
- ;;
-restart)
- $0 stop
- sleep 2
- $0 start
- ;;
-*)
- echo "usage: $0 [start|stop|restart]"
- ;;
-esac
-
-# End of file