]> git.pld-linux.org Git - packages/XFree86.git/commitdiff
outdated
authorJan Rękorajski <baggins@pld-linux.org>
Wed, 1 Nov 2000 23:42:35 +0000 (23:42 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    xfs.initd -> 1.5

xfs.initd [deleted file]

diff --git a/xfs.initd b/xfs.initd
deleted file mode 100644 (file)
index 17c95be..0000000
--- a/xfs.initd
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-#
-# xfs:       Starts the X Font Server
-#
-# Version:      @(#) /etc/rc.d/init.d/xfs 1.0
-#
-# chkconfig: 345 90 10
-# description: Starts and stops the X Font Server at boot time and shutdown.
-#
-# processname: xfs
-# config: /etc/X11/fs/config
-
-# Source function library.
-. /etc/rc.d/init.d/functions
-
-# See how we were called.
-case "$1" in
-  start)
-       show Starting X Font Server
-       daemon /usr/X11R6/bin/xfs -daemon
-       touch /var/lock/subsys/xfs
-       ;;
-  stop)
-       show Shutting down X Font Server
-       killproc xfs
-       rm -f /var/lock/subsys/xfs
-       ;;
-  status)
-       status xfs
-       ;;
-  restart)
-       $0 stop
-       $0 start
-       ;;
-  *)
-       echo "Usage: $0 {start|stop|status|restart}"
-       exit 1
-esac
-
-exit 0
-
This page took 0.051865 seconds and 4 git commands to generate.