]> git.pld-linux.org Git - packages/gdm2.20.git/commitdiff
obsoleted by gdm.init
authoralchemyx <alchemyx@pld-linux.org>
Tue, 2 Apr 2002 19:17:00 +0000 (19:17 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    gdm.initd -> 1.2

gdm.initd [deleted file]

diff --git a/gdm.initd b/gdm.initd
deleted file mode 100644 (file)
index de66d22..0000000
--- a/gdm.initd
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-# ver. 0.5
-#
-#
-# xdm:       Starts the X Display Manager (gdm / kdm / xdm)
-#
-# Version:      @(#) /etc/rc.d/init.d/gdm 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/gdm/gdm.conf
-# probe: true
-# hide: true
-
-. /etc/rc.d/init.d/functions
-
-# See how we were called.
-case "$1" in
-  start)
-       show Starting X Daemon
-       daemon /usr/X11R6/bin/gdm
-       touch /var/lock/subsys/gdm
-       ;;
-  stop)
-       show Shuting down X daemon
-       killproc gdm
-       rm -f /var/lock/subsys/gdm
-       ;;
-  status)
-       status gdm
-       ;;
-  restart)
-       $0 stop
-       $0 start
-       ;;
-  *)
-       echo "Usage: $0 {start|stop|status|restart}"
-       exit 1
-esac
-
-exit 0
-
This page took 0.05287 seconds and 4 git commands to generate.