blob: d9d5c723aaf62685f18e52640c083fe8d8647247 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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.0-r10/startDM.sh,v 1.1 2002/05/10 14:20:38 daybird Exp $
source /etc/init.d/functions.sh
if [ -e ${svcdir}/options/xdm/service ]
then
/sbin/start-stop-daemon --start --quiet \
--exec "`cat ${svcdir}/options/xdm/service`"
if [ $? -ne 0 ]
then
#there was a error running the DM
einfo "ERROR: could not start the Display Manager..."
fi
fi
|