File: init

package info (click to toggle)
xtell 2.9
  • links: PTS
  • area: main
  • in suites: woody
  • size: 188 kB
  • ctags: 73
  • sloc: ansic: 982; sh: 117; makefile: 78; python: 22
file content (48 lines) | stat: -rw-r--r-- 1,229 bytes parent folder | download | duplicates (2)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#! /bin/sh
#
# This file was automatically customized by debmake on Mon, 23 Dec 1996 20:27:43 -0800
#
# Written by Miquel van Smoorenburg <miquels@drinkel.ow.org>.
# Modified for Debian GNU/Linux by Ian Murdock <imurdock@gnu.ai.mit.edu>.
# Modified for Debian by Christoph Lameter <clameter@debian.org>


PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/usr/sbin/xtelld
# The following value is extracted by debstd to figure out how to generate
# the postinst script. Edit the field to change the way the script is
# registered through update-rc.d (see the manpage for update-rc.d!)
FLAGS="defaults 50"

test -f $DAEMON || exit 0

if [ -f /etc/xtelldrc ]; then
  . /etc/xtelldrc
fi

if [ "$FROMINETD" != "yes" ]; then

case "$1" in
  start)
    echo "Starting xtelld..."
    start-stop-daemon --chuid xtelld:tty --start --quiet --exec $DAEMON
    ;;
  stop)
    start-stop-daemon --stop --verbose --exec $DAEMON
	sleep 2
    ;;
  restart|force-reload)
    echo "Restarting $DAEMON..."
    start-stop-daemon --stop --quiet --exec $DAEMON
    sleep 2
    start-stop-daemon --chuid xtelld:tty --start --quiet --exec $DAEMON
    ;;
  *)
    echo "Usage: /etc/init.d/$0 {start|stop|restart|force-reload}"
    exit 1
    ;;
esac

fi

exit 0