Bugzilla – Attachment 47489 Details for
Bug 112774
kdm does not know that we live in utf-8
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
IDP Log In
|
Forgot Password
/etc/init.d/xdm
xdm (text/plain), 4.14 KB, created by
Dr. Werner Fink
on 2005-08-25 08:51:20 UTC
(
hide
)
Description:
/etc/init.d/xdm
Filename:
MIME Type:
Creator:
Dr. Werner Fink
Created:
2005-08-25 08:51:20 UTC
Size:
4.14 KB
patch
obsolete
>#! /bin/bash ># Copyright (c) 1996-2002 SuSE Linux AG, Nuernberg, Germany. ># All rights reserved. ># ># Author: Florian La Roche, 1996 ># Werner Fink <werner@suse.de>, 1996,98,99 ># Martin Scherbaum, 1997 ># Reinhard Max <max@suse.de>, 1997 ># ># Please send feedback to http://www.suse.de/feedback ># ># /etc/init.d/xdm ># >### BEGIN INIT INFO ># Provides: xdm ># Required-Start: $remote_fs ># Should-Start: ypbind $syslog gpm firstboot kbd resmgr ># Required-Stop: ># Default-Start: 5 ># Default-Stop: ># Description: X Display Manager >### END INIT INFO > >. /etc/rc.status >. /etc/sysconfig/displaymanager >. /etc/sysconfig/language >. /etc/sysconfig/windowmanager >test -e /etc/SuSEconfig/profile && . /etc/SuSEconfig/profile >test -r /etc/profile.d/desktop-data.sh && . /etc/profile.d/desktop-data.sh > >locale_vars=" \ >LANG \ >LC_CTYPE \ >LC_NUMERIC \ >LC_TIME \ >LC_COLLATE \ >LC_MONETARY \ >LC_MESSAGES \ >LC_PAPER \ >LC_NAME \ >LC_ADDRESS \ >LC_TELEPHONE \ >LC_MEASUREMENT \ >LC_IDENTIFICATION \ >LC_ALL" > >for lc in $locale_vars >do > eval val="\$RC_$lc" > if test -n "$val"; then > eval $lc="\$RC_$lc" > export $lc > fi >done >unset lc val > >test -z "$DEFAULT_WM" && DEFAULT_WM=twm >SAVEPATH=$PATH >PATH=$PATH:/usr/X11R6/bin:/opt/gnome/bin:/usr/openwin/bin >WINDOWMANAGER="`type -p ${DEFAULT_WM##*/}`" >PATH=$SAVEPATH >export WINDOWMANAGER >unset DEFAULT_WM SAVEPATH > >PIDFILE="/var/run/xdm.pid" >KDEROOTHOME=/root/.kdm >export KDEROOTHOME > >case "${DISPLAYMANAGER##*/}" in > kdm|kde|KDM|KDE) DISPLAYMANAGER=/opt/kde3/bin/kdm > PIDFILE="/var/run/kdm.pid" > test -d /usr/lib/qt3 && \ > export QTDIR=/usr/lib/qt3 > test -n "$LANG" && \ > export KDE_LANG=$LANG > ;; > xdm) DISPLAYMANAGER=/usr/X11R6/bin/xdm > ;; > gdm|GDM|Gnome|GNOME) DISPLAYMANAGER=/opt/gnome/sbin/gdm > PIDFILE="/var/run/gdm.pid" > ;; > wdm|WDM) DISPLAYMANAGER=/usr/X11R6/bin/wdm > ;; > console) exit 0 > ;; > *) DISPLAYMANAGER=/usr/X11R6/bin/xdm > test -x /opt/kde3/bin/kdm && \ > DISPLAYMANAGER=/opt/kde3/bin/kdm > ;; >esac >test ! -x "$DISPLAYMANAGER" && DISPLAYMANAGER=/usr/X11R6/bin/xdm > >DM=${DISPLAYMANAGER##*/} > >rc_reset >case "$1" in > start) > echo -n "Starting service $DM" > # Don't start xdm if no Xserver is configured and xdm is not > # configured for remote access > if [ ! -x /usr/X11R6/bin/X -a \ > "$DISPLAYMANAGER_REMOTE_ACCESS" = "no" ]; then > rc_status -u > rc_exit > fi > if [ "$DISPLAYMANAGER" = "/usr/X11R6/bin/xdm" ]; then > ln -snf $PIDFILE /etc/X11/xdm/xdm-pid > ln -snf /var/log/xdm.errors /etc/X11/xdm/xdm-errors > fi > if [ "$DISPLAYMANAGER" = "/opt/gnome/sbin/gdm" -a \ > "$DISPLAYMANAGER_REMOTE_ACCESS" = "yes" -a \ > "$DISPLAYMANAGER_STARTS_XSERVER" = "no" ]; then > XDMOPTIONS="--no-console" > fi > startproc -p $PIDFILE $DISPLAYMANAGER $XDMOPTIONS || rc_failed > # After a crash or a kill signal we may have > # a wrong owner ship of /dev/xconsole > if rc_status ; then > if test -x /etc/X11/xdm/TakeDevices ; then > /etc/X11/xdm/TakeDevices > else > chown root:tty /dev/xconsole /dev/tty0 > chmod 622 /dev/xconsole /dev/tty0 > fi > fi > rc_status -v > ;; > stop) > echo -n "Shutting down service $DM" > # > # killproc(8) sleep upto five seconds and sends > # SIGKILL if xdm does not terminate within > # > if [ "$DISPLAYMANAGER" = "/usr/X11R6/bin/xdm" ]; then > rm -f /etc/X11/xdm/xdm-pid > rm -f /etc/X11/xdm/xdm-errors > fi > killproc -p $PIDFILE -TERM $DISPLAYMANAGER > rc_status -v > ;; > restart) > $0 stop > $0 start > rc_status > ;; > reload|force-reload) > echo -n "Reload service $DM" > killproc -p $PIDFILE -HUP $DISPLAYMANAGER > rc_status -v > ;; > status|check) > echo -n "Checking for service ${DM}: " > checkproc -p $PIDFILE $DISPLAYMANAGER > rc_status -v > ;; > probe) > XDMDIR=/usr/X11R6/lib/X11/xdm > if test $XDMDIR/xdm-config -nt $PIDFILE -o \ > $XDMDIR/Xservers -nt $PIDFILE > then > echo reload > fi > ;; > try-restart|condrestart) > $0 status > if test $? = 0; then > $0 restart > else > rc_reset > fi > rc_status > ;; > *) > echo "Usage: $0 {start|stop|status|restart|reload|force-reload|probe|try-restart}" > exit 1 >esac >rc_exit
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
Actions:
View
Attachments on
bug 112774
:
47443
| 47489