]> git.draconx.ca Git - gentoo-draconx.git/blob - x11-base/xorg-server/files/xdm.initd-3
993af2f2ede57a141ccb82c6d07e6b3b1f6ecf73
[gentoo-draconx.git] / x11-base / xorg-server / files / xdm.initd-3
1 #!/sbin/runscript
2 # Copyright 1999-2011 Gentoo Foundation
3 # Distributed under the terms of the GNU General Public License, v2
4 # $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/files/xdm.initd-3,v 1.2 2011/01/22 15:30:07 lxnay Exp $
5
6 # This is here to serve as a note to myself, and future developers.
7 #
8 # Any Display manager (gdm,kdm,xdm) has the following problem:  if
9 # it is started before any getty, and no vt is specified, it will
10 # usually run on vt2.  When the getty on vt2 then starts, and the
11 # DM is already started, the getty will take control of the keyboard,
12 # leaving us with a "dead" keyboard.
13 #
14 # Resolution: add the following line to /etc/inittab
15 #
16 #  x:a:once:/etc/X11/startDM.sh
17 #
18 # and have /etc/X11/startDM.sh start the DM in daemon mode if
19 # a lock is present (with the info of what DM should be started),
20 # else just fall through.
21 #
22 # How this basically works, is the "a" runlevel is a additional
23 # runlevel that you can use to fork processes with init, but the
24 # runlevel never gets changed to this runlevel.  Along with the "a"
25 # runlevel, the "once" key word means that startDM.sh will only be
26 # run when we specify it to run, thus eliminating respawning
27 # startDM.sh when "xdm" is not added to the default runlevel, as was
28 # done previously.
29 #
30 # This script then just calls "telinit a", and init will run
31 # /etc/X11/startDM.sh after the current runlevel completes (this
32 # script should only be added to the actual runlevel the user is
33 # using).
34 #
35 # Martin Schlemmer
36 # aka Azarah
37 # 04 March 2002
38
39 depend() {
40         need localmount xdm-setup
41
42         # this should start as early as possible
43         # we can't do 'before *' as that breaks it
44         # (#139824) Start after ypbind and autofs for network authentication
45         # (#145219 #180163) Could use lirc mouse as input device
46         # (#70689 comment #92) Start after consolefont to avoid display corruption
47         # (#291269) Start after quota, since some dm need readable home
48         after bootmisc consolefont modules netmount
49         after readahead-list ypbind autofs openvpn gpm lircmd
50         after quota
51         before alsasound
52
53         # Start before X
54         use consolekit xfs
55 }
56
57 setup_dm() {
58         local MY_XDM
59         
60         MY_XDM=$(echo "${DISPLAYMANAGER}" | tr '[:upper:]' '[:lower:]')
61
62         # Load our root path from profile.env
63         # Needed for kdm
64         PATH=${PATH}:$(. /etc/profile.env; echo "${ROOTPATH}")
65
66         NAME=
67         case "${MY_XDM}" in
68                 kdm|kde)
69                         EXE="$(which kdm)"
70                         PIDFILE=/var/run/kdm.pid
71                         ;;
72                 kdm-*)
73                         EXE="/usr/kde/${MY_XDM#kdm-}/bin/kdm"
74                         PIDFILE=/var/run/kdm.pid
75                         ;;
76                 entrance*)
77                         EXE=/usr/sbin/entranced
78                         PIDFILE=/var/lib/entranced.pid
79                         ;;
80                 gdm|gnome)
81                         EXE=/usr/bin/gdm
82                         [ "${RC_UNAME}" != "Linux" ] && NAME=gdm-binary
83                         PIDFILE=/var/run/gdm.pid
84                         ;;
85                 wdm)
86                         EXE=/usr/bin/wdm
87                         PIDFILE=
88                         ;;
89                 gpe)
90                         EXE=/usr/bin/gpe-dm
91                         PIDFILE=/var/run/gpe-dm.pid
92                         ;;
93                 lxdm)
94                         EXE=/usr/sbin/lxdm-binary
95                         PIDFILE=/var/run/lxdm.pid
96                         START_STOP_ARGS="--background"
97                         ;;
98                 *)
99                         # first find out if there is such executable
100                         EXE="$(which ${MY_XDM} 2>/dev/null)"
101                         PIDFILE="/var/run/${MY_XDM}.pid"
102
103                         # warn user that he is doing sick things if the exe was not found
104                         if [ -z "${EXE}" ]; then
105                                 echo "ERROR: Your XDM value is invalid."
106                                 echo "  No ${MY_XDM} executable could be found on your system."
107                         fi
108                         ;;
109         esac
110
111         if ! [ -x "${EXE}" ]; then
112                 EXE=/usr/bin/xdm
113                 PIDFILE=/var/run/xdm.pid
114                 if ! [ -x "/usr/bin/xdm" ]; then
115                         echo "ERROR: Please set your DISPLAYMANAGER variable in /etc/conf.d/xdm,"
116                         echo "  or install x11-apps/xdm package"
117                         eend 255
118                 fi
119         fi
120 }
121
122 # Check to see if something is defined on our VT
123 vtstatic() {
124         if [ -e /etc/inittab ] ; then
125                 grep -Eq "^[^#]+.*\<tty$1\>" /etc/inittab
126         elif [ -e /etc/ttys ] ; then
127                 grep -q "^ttyv$(($1 - 1))" /etc/ttys
128         else
129                 return 1
130         fi
131 }
132
133 start() {
134         local EXE NAME PIDFILE
135         setup_dm
136
137         if [ -f /etc/.noxdm ]; then
138                 einfo "Skipping ${EXE##*/}, /etc/.noxdm found or \"nox\" bootparam passed."
139                 rm /etc/.noxdm
140                 return 0
141         fi
142
143         ebegin "Setting up ${EXE##*/}"
144
145         # save the prefered DM
146         save_options "service" "${EXE}"
147         save_options "name"    "${NAME}"
148         save_options "pidfile" "${PIDFILE}"
149         save_options "start_stop_args" "${START_STOP_ARGS}"
150
151         if [ -n "${CHECKVT-y}" ] ; then
152                 if vtstatic "${CHECKVT:-7}" ; then
153                         if [ -x /sbin/telinit ] && [ "${SOFTLEVEL}" != "BOOT" ] && [ "${RC_SOFTLEVEL}" != "BOOT" ]; then
154                                 ewarn "Something is already defined on VT ${CHECKVT:-7}, will start X later"
155                                 telinit a >/dev/null 2>&1
156                                 return 0
157                         else
158                                 eerror "Something is already defined on VT ${CHECKVT:-7}, not starting"
159                                 return 1
160                         fi
161                 fi
162         fi
163
164         /etc/X11/startDM.sh
165         eend 0
166 }
167
168 stop() {
169         local curvt retval
170
171         retval=0
172         if [ -t 0 ]; then
173                 if type fgconsole >/dev/null 2>&1; then
174                         curvt=$(fgconsole 2>/dev/null)
175                 else
176                         curvt=$(tty)
177                         case "${curvt}" in
178                                 /dev/ttyv[0-9]*) curvt=${curvt#/dev/ttyv} ;;
179                                 *) curvt= ;;
180                         esac
181                 fi
182         fi
183         local myexe myname mypidfile myservice
184         myexe=$(get_options "service")
185         myname=$(get_options "name")
186         mypidfile=$(get_options "pidfile")
187         myservice=${myexe##*/}
188
189         [ -z "${myexe}" ] && return 0
190
191         ebegin "Stopping ${myservice}"
192
193         if start-stop-daemon --quiet --test --stop --exec "${myexe}"; then
194                 start-stop-daemon --stop --exec "${myexe}" --retry TERM/5/TERM/5 \
195                         ${mypidfile:+--pidfile} ${mypidfile} \
196                         ${myname:+--name} ${myname}
197                 retval=${?}
198         fi
199
200         # switch back to original vt
201         if [ -n "${curvt}" ]; then
202                 if type chvt >/dev/null 2>&1; then
203                         chvt "${curvt}"
204                 else
205                         vidcontrol -s "$((curvt + 1))"
206                 fi
207         fi
208
209         eend ${retval} "Error stopping ${myservice}"
210         return ${retval}
211 }
212
213 # vim: set ts=4 :