mirror of
git://slackware.nl/current.git
synced 2025-01-06 05:25:20 +01:00
49 lines
1.3 KiB
Groff
49 lines
1.3 KiB
Groff
|
#! /bin/sh
|
||
|
#
|
||
|
# 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..."
|
||
|
|
||
|
# 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
|
||
|
exec /usr/bin/gdm -nodaemon
|
||
|
fi
|
||
|
|
||
|
# Someone thought that gdm looked prettier in /usr/sbin,
|
||
|
# so look there, too:
|
||
|
if [ -x /usr/sbin/gdm ]; then
|
||
|
exec /usr/sbin/gdm -nodaemon
|
||
|
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
|
||
|
|
||
|
# 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
|
||
|
echo "Hey, you don't have KDM, GDM, or XDM. Can't use runlevel 4 without"
|
||
|
echo "one of those installed."
|
||
|
sleep 30
|
||
|
|
||
|
# All done.
|