~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to utopic/etc/init.d/p910nd

  • Committer: Dimitri John Ledkov
  • Date: 2014-05-06 18:45:46 UTC
  • Revision ID: dimitri.ledkov@canonical.com-20140506184546-5toyx56xxrue0f0v
auto update

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
### BEGIN INIT INFO
 
3
# Provides:          p910nd
 
4
# Required-Start:    $remote_fs $syslog $network
 
5
# Required-Stop:     $remote_fs $syslog
 
6
# Default-Start:     2 3 4 5
 
7
# Default-Stop:      0 1 6
 
8
# Short-Description: p910nd daemon providing network printer access
 
9
# Description:       Start p910nd to provide port 9100+n printer service
 
10
### END INIT INFO
 
11
 
 
12
# Author: Mario Izquierdo (mariodebian) <mariodebian@gmail.com>
 
13
#
 
14
 
 
15
# Do NOT "set -e"
 
16
 
 
17
# PATH should only include /usr/* if it runs after the mountnfs.sh script
 
18
PATH=/sbin:/usr/sbin:/bin:/usr/bin
 
19
DESC="network print daemon"
 
20
NAME=p910nd
 
21
DAEMON=/usr/sbin/$NAME
 
22
PIDFILE=/var/run/p9100d.pid
 
23
SCRIPTNAME=/etc/init.d/$NAME
 
24
 
 
25
# Exit if the package is not installed
 
26
[ -x "$DAEMON" ] || exit 0
 
27
 
 
28
# create /var/run and /var/lock/p910nd (Debian policy 3.8.1)
 
29
[ ! -d /var/run ] && mkdir -p /var/run
 
30
[ ! -d /var/lock/p910nd ] && mkdir -p /var/lock/p910nd
 
31
 
 
32
P910ND_OPTS=""
 
33
P910ND_NUM=""
 
34
 
 
35
# Read configuration variable file if it is present
 
36
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
 
37
 
 
38
 
 
39
DAEMON_ARGS=" $P910ND_OPTS $P910ND_NUM"
 
40
 
 
41
# Load the VERBOSE setting and other rcS variables
 
42
. /lib/init/vars.sh
 
43
 
 
44
# Define LSB log_* functions.
 
45
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
 
46
. /lib/lsb/init-functions
 
47
 
 
48
#
 
49
# Function that starts the daemon/service
 
50
#
 
51
do_start()
 
52
{
 
53
        # Return
 
54
        #   0 if daemon has been started
 
55
        #   1 if daemon was already running
 
56
        #   2 if daemon could not be started
 
57
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
 
58
                || return 1
 
59
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
 
60
                $DAEMON_ARGS \
 
61
                || return 2
 
62
}
 
63
 
 
64
#
 
65
# Function that stops the daemon/service
 
66
#
 
67
do_stop()
 
68
{
 
69
        # Return
 
70
        #   0 if daemon has been stopped
 
71
        #   1 if daemon was already stopped
 
72
        #   2 if daemon could not be stopped
 
73
        #   other if a failure occurred
 
74
        start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
 
75
        RETVAL="$?"
 
76
        [ "$RETVAL" = 2 ] && return 2
 
77
        # Wait for children to finish too if this is a daemon that forks
 
78
        # and if the daemon is only ever run from this initscript.
 
79
        # If the above conditions are not satisfied then add some other code
 
80
        # that waits for the process to drop all resources that could be
 
81
        # needed by services started subsequently.  A last resort is to
 
82
        # sleep for some time.
 
83
        start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
 
84
        [ "$?" = 2 ] && return 2
 
85
        # Many daemons don't delete their pidfiles when they exit.
 
86
        rm -f $PIDFILE
 
87
        return "$RETVAL"
 
88
}
 
89
 
 
90
case "$1" in
 
91
  start)
 
92
        # disable start
 
93
        if [ "$P910ND_START" != "1" ]; then
 
94
            log_warning_msg "Not starting p910nd daemon. Please edit /etc/default/p910nd first."
 
95
            exit 0
 
96
        fi
 
97
 
 
98
        log_daemon_msg "Starting $DESC" "$NAME"
 
99
        do_start
 
100
        case "$?" in
 
101
                0|1) log_end_msg 0 ;;
 
102
                2)   log_end_msg 1 ;;
 
103
        esac
 
104
        ;;
 
105
  stop)
 
106
        log_daemon_msg "Stopping $DESC" "$NAME"
 
107
        do_stop
 
108
        case "$?" in
 
109
                0|1) log_end_msg 0 ;;
 
110
                2)   log_end_msg 1 ;;
 
111
        esac
 
112
        ;;
 
113
  restart|force-reload)
 
114
        #
 
115
        # If the "reload" option is implemented then remove the
 
116
        # 'force-reload' alias
 
117
        #
 
118
        log_daemon_msg "Restarting $DESC" "$NAME"
 
119
        do_stop
 
120
        case "$?" in
 
121
          0|1)
 
122
                do_start
 
123
                case "$?" in
 
124
                        0) log_end_msg 0 ;;
 
125
                        1) log_end_msg 1 ;; # Old process is still running
 
126
                        *) log_end_msg 1 ;; # Failed to start
 
127
                esac
 
128
                ;;
 
129
          *)
 
130
                # Failed to stop
 
131
                log_end_msg 1
 
132
                ;;
 
133
        esac
 
134
        ;;
 
135
  *)
 
136
        echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2
 
137
        exit 3
 
138
        ;;
 
139
esac
 
140
 
 
141
: