summaryrefslogtreecommitdiffstats
path: root/xorg-xdm/xdm
diff options
context:
space:
mode:
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