blob: bb299246f0fac3af371c96769b233c30d4f33b56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/bash
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Martin Schlemmer <azarah@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/x11-base/xfree/files/4.2.1/startDM.sh,v 1.2 2002/11/07 09:13:21 azarah Exp $
source /etc/init.d/functions.sh
# We need to source /etc/profile for stuff like $LANG to work
# bug #10190.
source /etc/profile
if [ -e ${svcdir}/options/xdm/service ]
then
retval=0
EXE="`cat ${svcdir}/options/xdm/service`"
/sbin/start-stop-daemon --start --quiet --exec ${EXE}
retval=$?
sleep 5
if [ "${retval}" -ne 0 ]
then
# there was a error running the DM
einfo "ERROR: could not start the Display Manager..."
# make sure we do not have a misbehaving DM
killall -9 ${EXE##*/}
fi
fi
# vim:ts=4
|