2021-04-23 21:13:09 +02:00
|
|
|
#!/bin/bash
|
2009-08-26 17:00:38 +02:00
|
|
|
#
|
|
|
|
# rc.4 This file is executed by init(8) when the system is being
|
|
|
|
# initialized for run level 4 (XDM)
|
|
|
|
#
|
|
|
|
# Version: @(#)/etc/rc.d/rc.4 2.00 02/17/93
|
|
|
|
#
|
|
|
|
# Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
|
|
|
|
# At least 47% rewritten by: Patrick J. Volkerding <volkerdi@slackware.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
# Tell the viewers what's going to happen...
|
|
|
|
echo "Starting up X11 session manager..."
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
# If you'd like to start something different or in a different order than
|
|
|
|
# the options below, create your own startup script /etc/rc.d/rc.4.local
|
|
|
|
# and make it executable and it will be used instead:
|
|
|
|
if [ -x /etc/rc.d/rc.4.local ]; then
|
|
|
|
exec /bin/bash /etc/rc.d/rc.4.local
|
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
# Try to use GNOME's gdm session manager. This comes first because if
|
|
|
|
# gdm is on the machine then the user probably installed it and wants
|
|
|
|
# to use it by default:
|
|
|
|
if [ -x /usr/bin/gdm ]; then
|
2023-05-09 22:11:22 +02:00
|
|
|
exec /usr/bin/gdm
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Someone thought that gdm looked prettier in /usr/sbin,
|
|
|
|
# so look there, too:
|
|
|
|
if [ -x /usr/sbin/gdm ]; then
|
2023-05-09 22:11:22 +02:00
|
|
|
exec /usr/sbin/gdm
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Not there? OK, try to use KDE's kdm session manager:
|
|
|
|
if [ -x /opt/kde/bin/kdm ]; then
|
|
|
|
exec /opt/kde/bin/kdm -nodaemon
|
|
|
|
elif [ -x /usr/bin/kdm ]; then
|
|
|
|
exec /usr/bin/kdm -nodaemon
|
|
|
|
fi
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
# Look for SDDM as well:
|
|
|
|
if [ -x /usr/bin/sddm ]; then
|
|
|
|
exec /usr/bin/sddm
|
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
# If all you have is XDM, I guess it will have to do:
|
|
|
|
if [ -x /usr/bin/xdm ]; then
|
|
|
|
exec /usr/bin/xdm -nodaemon
|
|
|
|
elif [ -x /usr/X11R6/bin/xdm ]; then
|
|
|
|
exec /usr/X11R6/bin/xdm -nodaemon
|
|
|
|
fi
|
|
|
|
|
|
|
|
# error
|
|
|
|
echo
|
2021-04-24 20:55:05 +02:00
|
|
|
echo "Hey, you don't have SDDM, KDM, GDM, or XDM. Can't use runlevel 4 without"
|
2009-08-26 17:00:38 +02:00
|
|
|
echo "one of those installed."
|
|
|
|
sleep 30
|
|
|
|
|
|
|
|
# All done.
|