forked from pld-linux/XFree86
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdm.init
82 lines (75 loc) · 1.28 KB
/
xdm.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
#!/bin/sh
#
# xdm: Starts the X Display Manager
#
# Version: @(#) /etc/rc.d/init.d/xdm 1.3
#
# chkconfig: 5 95 05
# 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
start() {
if [ ! -f /var/lock/subsys/xdm ]; then
msg_starting "X Display Manager"
daemon xdm
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/xdm
else
msg_already_running "X Display Manager"
fi
}
stop() {
if [ -f /var/lock/subsys/xdm ]; then
msg_stopping "X Display Manager"
killproc xdm
rm -f /var/lock/subsys/xdm
else
msg_not_running "X Display Manager"
fi
}
condrestart() {
if [ -f /var/lock/subsys/xdm ]; then
stop
start
else
msg_not_running xdm
RETVAL=$1
fi
}
RETVAL=0
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
try-restart)
condrestart 0
;;
force-reload)
condrestart 7
;;
status)
status xdm
exit $?
;;
*)
msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
exit 3
esac
exit $RETVAL