File: whereami.init

package info (click to toggle)
whereami 0.3.36
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 424 kB
  • sloc: sh: 1,094; perl: 524; makefile: 24
file content (49 lines) | stat: -rwxr-xr-x 1,245 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
49
#!/bin/sh
#
# Start or stop 'whereami'
#
### BEGIN INIT INFO
# Provides:          whereami
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Autoconfigure computer according to defined rules
# Description:       Using a variety of techniques this will ascertain
#                    the computer's location on the network, in the
#                    docking station and so forth and configure things
#                    appropriately.
### END INIT INFO
#
# Andrew McMillan <Andrew@cat-it.co.nz>
#

test -x /usr/sbin/whereami || exit 0

. /lib/lsb/init-functions

case "$1" in
    start|restart|force-reload|reload)
        if [ ! -d /var/run/whereami ] ; then
            mkdir /var/run/whereami
        fi
    	echo -n "Where Am I: "
      start-stop-daemon --start --quiet --exec /usr/sbin/whereami -- --run_from init --syslog --hint netstart
    ;;

    stop)
      start-stop-daemon --start --quiet --exec /usr/sbin/whereami -- --run_from init --syslog shutdown
    ;;

    status)
      cat /var/lib/whereami/iam
    ;;


    *)
	echo "Usage: /etc/init.d/whereami {start|stop|restart|force-reload}" >&2
	exit 1
    ;;
esac

exit 0