]> git.pld-linux.org Git - packages/XFree86.git/blobdiff - xfs.initd
This commit was manufactured by cvs2git to create branch 'X11R6_4'.
[packages/XFree86.git] / xfs.initd
diff --git a/xfs.initd b/xfs.initd
deleted file mode 100644 (file)
index 784b919..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
-       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.042307 seconds and 4 git commands to generate.