| 1 |
#!/sbin/runscript
|
| 2 |
# Copyright 1999-2012 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-7,v 1.1 2012/03/20 16:02:51 ssuominen 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 |
# (#390609) gdm-3 will fail when dbus is not running
|
| 49 |
# (#366753) starting keymaps after X causes problems
|
| 50 |
after bootmisc consolefont modules netmount
|
| 51 |
after readahead-list ypbind autofs openvpn gpm lircmd
|
| 52 |
after quota keymaps
|
| 53 |
before alsasound
|
| 54 |
|
| 55 |
# Start before X
|
| 56 |
use consolekit dbus xfs
|
| 57 |
}
|
| 58 |
|
| 59 |
setup_dm() {
|
| 60 |
local MY_XDM
|
| 61 |
|
| 62 |
MY_XDM=$(echo "${DISPLAYMANAGER}" | tr '[:upper:]' '[:lower:]')
|
| 63 |
|
| 64 |
# Load our root path from profile.env
|
| 65 |
# Needed for kdm
|
| 66 |
PATH=${PATH}:$(. /etc/profile.env; echo "${ROOTPATH}")
|
| 67 |
|
| 68 |
NAME=
|
| 69 |
case "${MY_XDM}" in
|
| 70 |
kdm|kde)
|
| 71 |
EXE=/usr/bin/kdm
|
| 72 |
PIDFILE=/var/run/kdm.pid
|
| 73 |
;;
|
| 74 |
entrance*)
|
| 75 |
EXE=/usr/sbin/entranced
|
| 76 |
PIDFILE=/var/lib/entranced.pid
|
| 77 |
;;
|
| 78 |
gdm|gnome)
|
| 79 |
EXE=/usr/bin/gdm
|
| 80 |
[ "${RC_UNAME}" != "Linux" ] && NAME=gdm-binary
|
| 81 |
PIDFILE=/var/run/gdm.pid
|
| 82 |
;;
|
| 83 |
wdm)
|
| 84 |
EXE=/usr/bin/wdm
|
| 85 |
PIDFILE=
|
| 86 |
;;
|
| 87 |
gpe)
|
| 88 |
EXE=/usr/bin/gpe-dm
|
| 89 |
PIDFILE=/var/run/gpe-dm.pid
|
| 90 |
;;
|
| 91 |
lxdm)
|
| 92 |
EXE=/usr/sbin/lxdm-binary
|
| 93 |
PIDFILE=/var/run/lxdm.pid
|
| 94 |
START_STOP_ARGS="--background"
|
| 95 |
;;
|
| 96 |
lightdm)
|
| 97 |
EXE=/usr/sbin/lightdm
|
| 98 |
PIDFILE=/var/run/lightdm.pid
|
| 99 |
START_STOP_ARGS="--background"
|
| 100 |
;;
|
| 101 |
*)
|
| 102 |
# first find out if there is such executable
|
| 103 |
EXE="$(command -v ${MY_XDM} 2>/dev/null)"
|
| 104 |
PIDFILE="/var/run/${MY_XDM}.pid"
|
| 105 |
|
| 106 |
# warn user that he is doing sick things if the exe was not found
|
| 107 |
if [ -z "${EXE}" ]; then
|
| 108 |
echo "ERROR: Your XDM value is invalid."
|
| 109 |
echo " No ${MY_XDM} executable could be found on your system."
|
| 110 |
fi
|
| 111 |
;;
|
| 112 |
esac
|
| 113 |
|
| 114 |
if ! [ -x "${EXE}" ]; then
|
| 115 |
EXE=/usr/bin/xdm
|
| 116 |
PIDFILE=/var/run/xdm.pid
|
| 117 |
if ! [ -x "/usr/bin/xdm" ]; then
|
| 118 |
echo "ERROR: Please set your DISPLAYMANAGER variable in /etc/conf.d/xdm,"
|
| 119 |
echo " or install x11-apps/xdm package"
|
| 120 |
eend 255
|
| 121 |
fi
|
| 122 |
fi
|
| 123 |
}
|
| 124 |
|
| 125 |
# Check to see if something is defined on our VT
|
| 126 |
vtstatic() {
|
| 127 |
if [ -e /etc/inittab ] ; then
|
| 128 |
grep -Eq "^[^#]+.*\<tty$1\>" /etc/inittab
|
| 129 |
elif [ -e /etc/ttys ] ; then
|
| 130 |
grep -q "^ttyv$(($1 - 1))" /etc/ttys
|
| 131 |
else
|
| 132 |
return 1
|
| 133 |
fi
|
| 134 |
}
|
| 135 |
|
| 136 |
start() {
|
| 137 |
local EXE NAME PIDFILE
|
| 138 |
setup_dm
|
| 139 |
|
| 140 |
if [ -f /etc/.noxdm ]; then
|
| 141 |
einfo "Skipping ${EXE##*/}, /etc/.noxdm found or \"nox\" bootparam passed."
|
| 142 |
rm /etc/.noxdm
|
| 143 |
return 0
|
| 144 |
fi
|
| 145 |
|
| 146 |
ebegin "Setting up ${EXE##*/}"
|
| 147 |
|
| 148 |
# save the prefered DM
|
| 149 |
save_options "service" "${EXE}"
|
| 150 |
save_options "name" "${NAME}"
|
| 151 |
save_options "pidfile" "${PIDFILE}"
|
| 152 |
save_options "start_stop_args" "${START_STOP_ARGS}"
|
| 153 |
|
| 154 |
if [ -n "${CHECKVT-y}" ] ; then
|
| 155 |
if vtstatic "${CHECKVT:-7}" ; then
|
| 156 |
if [ -x /sbin/telinit ] && [ "${SOFTLEVEL}" != "BOOT" ] && [ "${RC_SOFTLEVEL}" != "BOOT" ]; then
|
| 157 |
ewarn "Something is already defined on VT ${CHECKVT:-7}, will start X later"
|
| 158 |
telinit a >/dev/null 2>&1
|
| 159 |
return 0
|
| 160 |
else
|
| 161 |
eerror "Something is already defined on VT ${CHECKVT:-7}, not starting"
|
| 162 |
return 1
|
| 163 |
fi
|
| 164 |
fi
|
| 165 |
fi
|
| 166 |
|
| 167 |
/etc/X11/startDM.sh
|
| 168 |
eend 0
|
| 169 |
}
|
| 170 |
|
| 171 |
stop() {
|
| 172 |
local curvt retval
|
| 173 |
|
| 174 |
retval=0
|
| 175 |
if [ -t 0 ]; then
|
| 176 |
if type fgconsole >/dev/null 2>&1; then
|
| 177 |
curvt=$(fgconsole 2>/dev/null)
|
| 178 |
else
|
| 179 |
curvt=$(tty)
|
| 180 |
case "${curvt}" in
|
| 181 |
/dev/ttyv[0-9]*) curvt=${curvt#/dev/ttyv} ;;
|
| 182 |
*) curvt= ;;
|
| 183 |
esac
|
| 184 |
fi
|
| 185 |
fi
|
| 186 |
local myexe myname mypidfile myservice
|
| 187 |
myexe=$(get_options "service")
|
| 188 |
myname=$(get_options "name")
|
| 189 |
mypidfile=$(get_options "pidfile")
|
| 190 |
myservice=${myexe##*/}
|
| 191 |
|
| 192 |
[ -z "${myexe}" ] && return 0
|
| 193 |
|
| 194 |
ebegin "Stopping ${myservice}"
|
| 195 |
|
| 196 |
if start-stop-daemon --quiet --test --stop --exec "${myexe}"; then
|
| 197 |
start-stop-daemon --stop --exec "${myexe}" --retry TERM/5/TERM/5 \
|
| 198 |
${mypidfile:+--pidfile} ${mypidfile} \
|
| 199 |
${myname:+--name} ${myname}
|
| 200 |
retval=${?}
|
| 201 |
fi
|
| 202 |
|
| 203 |
# switch back to original vt
|
| 204 |
if [ -n "${curvt}" ]; then
|
| 205 |
if type chvt >/dev/null 2>&1; then
|
| 206 |
chvt "${curvt}"
|
| 207 |
else
|
| 208 |
vidcontrol -s "$((curvt + 1))"
|
| 209 |
fi
|
| 210 |
fi
|
| 211 |
|
| 212 |
eend ${retval} "Error stopping ${myservice}"
|
| 213 |
return ${retval}
|
| 214 |
}
|
| 215 |
|
| 216 |
# vim: set ts=4 :
|