forked from pld-linux/X11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xfs.init
95 lines (87 loc) · 1.46 KB
/
xfs.init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/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
start() {
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")
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/xfs
else
msg_already_running "X Font Server"
fi
}
stop() {
if [ -f /var/lock/subsys/xfs ]; then
msg_stopping "X Font Server"
killproc xfs
rm -f /var/lock/subsys/xfs
else
msg_not_running "X Font Server"
fi
}
reload() {
if [ -f /var/lock/subsys/xfs ]; then
msg_reloading "X Font Server"
killproc xfs -USR1
RETVAL=$?
else
msg_not_running "X Font Server"
RETVAL=7
fi
}
condrestart() {
if [ -f /var/lock/subsys/xfs ]; then
stop
start
else
msg_not_running xfs
RETVAL=$1
fi
}
RETVAL=0
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
try-restart)
condrestart 0
;;
reload|force-reload)
reload
;;
status)
status xfs
exit $?
;;
*)
msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|status}"
exit 3
esac
exit $RETVAL