X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=xfs.initd;fp=xfs.initd;h=0000000000000000000000000000000000000000;hb=046941452c790559a04aca1e56362eaa7b7b5115;hp=784b919106ddeabf8c024d8a65882a355e816fd3;hpb=c56e36f05bee2498b093d12a4fb9f45ed64928d8;p=packages%2FXFree86.git diff --git a/xfs.initd b/xfs.initd deleted file mode 100644 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 -