]> git.pld-linux.org Git - packages/X11.git/commitdiff
- moved from xdm.initd and rewrited. XFree86-3_3_5-18
authorkloczek <kloczek@pld-linux.org>
Thu, 9 Dec 1999 14:44:32 +0000 (14:44 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    xdm.init -> 1.1

xdm.init [new file with mode: 0644]

diff --git a/xdm.init b/xdm.init
new file mode 100644 (file)
index 0000000..70c1328
--- /dev/null
+++ b/xdm.init
@@ -0,0 +1,47 @@
+#!/bin/sh
+#
+# xdm:         Starts the X Display Manager
+#
+# Version:      @(#) /etc/rc.d/init.d/xdm 1.3
+#
+# chkconfig:   5 95 5
+# description: Starts and stops the X Display Manager at startup and
+#              shutdown. can run one of several display managers; gdm, kdm,
+#              or xdm, in that order of preferential treatment.
+#
+# config:      /etc/X11/xdm/xdm-config
+# probe:       true
+# hide:                true
+
+. /etc/rc.d/init.d/functions
+
+# See how we were called.
+case "$1" in
+       # Check if the service is already running?
+       if [ ! -f /var/lock/subsys/xdm ]; then
+               show Starting X Display Manager daemon
+               daemon /usr/X11R6/bin/xdm
+       else
+               echo "Starting X Display Manager already is running"
+       fi
+       touch /var/lock/subsys/xdm
+       ;;
+  stop)
+       show Shutting down X Display Manager daemon
+       killproc xdm
+       rm -f /var/lock/subsys/xdm
+       ;;
+  status)
+       status xdm
+       ;;
+  restart|reload)
+       $0 stop
+       $0 start
+       ;;
+  *)
+       echo "Usage: $0 {start|stop|status|restart|reload}"
+       exit 1
+esac
+
+exit 0
+
This page took 0.034465 seconds and 4 git commands to generate.