]> git.pld-linux.org Git - packages/X11.git/commitdiff
This commit was manufactured by cvs2git to create branch 'djrzulf- djrzulf-XFree86-4_3_0
authorcvs2git <feedback@pld-linux.org>
Sat, 3 May 2003 17:55:34 +0000 (17:55 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
XFree86-4_3_0'.

Sprout from master 2003-05-03 17:55:34 UTC aflinta <aflinta@pld-linux.org> '- first try to fix bug with LockDisplay (which occurs when using totem)'
Delete:
    xdm.init
    xfs.init

xdm.init [deleted file]
xfs.init [deleted file]

diff --git a/xdm.init b/xdm.init
deleted file mode 100644 (file)
index 123d5eb..0000000
--- a/xdm.init
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/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
-
-# Get service config
-if [ -f /etc/sysconfig/xdm ] ; then
-        . /etc/sysconfig/xdm
-fi
-
-# See how we were called.
-case "$1" in
-  start)
-       # Check if the service is already running?
-       if [ -f /var/lock/subsys/xdm ]; then
-               msg_already_running "X Display Manager"
-       else
-               msg_starting "X Display Manager"
-               daemon /usr/X11R6/bin/xdm
-               touch /var/lock/subsys/xdm
-       fi
-       ;;
-  stop)
-       msg_stopping "X Display Manager"
-       killproc xdm
-       rm -f /var/lock/subsys/xdm
-       ;;
-  status)
-       status xdm
-       ;;
-  restart|reload)
-       $0 stop
-       $0 start
-       ;;
-  *)
-       msg_usage "$0 {start|stop|status|restart|reload}"
-       exit 1
-esac
-
-exit 0
diff --git a/xfs.init b/xfs.init
deleted file mode 100644 (file)
index de9d3b2..0000000
--- a/xfs.init
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/bin/sh
-#
-# xfs:         Starts the X Font Server
-#
-# Version:      $Revision$
-#
-# chkconfig:   345 90 10
-# description: Starts and stops the X Font Server at boot time and shutdown.
-#
-# processname: xfs
-# config:      /etc/X11/fs/config
-# hide:                true
-
-# Source function library.
-. /etc/rc.d/init.d/functions
-
-# Get service config
-if [ -f /etc/sysconfig/xfs ] ; then
-        . /etc/sysconfig/xfs
-fi
-
-# See how we were called.
-case "$1" in
-  start)
-       # Check if the service is already running?
-       if [ ! -f /var/lock/subsys/xfs ]; then
-               msg_starting "X Font Server"
-               rm -fr /tmp/.font-unix
-               daemon xfs \
-                       $([ -n "$XFS_PORT" ] && echo "-port $XFS_PORT") \
-                       $([ -n "$XFS_OPTIONS" ] && echo "$XFS_OPTIONS")
-       else
-               msg_already_running "X Font Server"
-       fi
-       touch /var/lock/subsys/xfs
-       ;;
-  stop)
-       msg_stopping "X Font Server"
-       killproc xfs
-       rm -f /var/lock/subsys/xfs
-       ;;
-  status)
-       status xfs
-       ;;
-  restart)
-       $0 stop
-       $0 start
-       ;;
-  reload)
-       if [ -f /var/lock/subsys/xfs ]; then
-               msg_reloading "X Font Server"
-               killproc xfs -USR1
-       else
-               msg_not_running "X Font Server"
-       fi
-       ;;
-  *)
-       msg_usage "$0 {start|stop|status|restart|reload}"
-       exit 1
-esac
-
-exit 0
This page took 0.901051 seconds and 4 git commands to generate.