~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

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

  • 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:          mcstransd mcstrans
 
4
# Required-Start:    $remote_fs $syslog
 
5
# Required-Stop:     $remote_fs $syslog
 
6
# Default-Start:     2 3 4 5
 
7
# Default-Stop:      0 1 6
 
8
# Short-Description: The daemon to make sensitivity labels human readable form
 
9
# Description:       This daemon maps machine readable sensitivity labels
 
10
#                    (numbered levels and categories) to a human readable form
 
11
#                    (arbitrary names assigned by the sysadmin).
 
12
### END INIT INFO
 
13
 
 
14
# Author: Laurent Bigonville <bigon@debian.org>
 
15
 
 
16
# Do NOT "set -e"
 
17
 
 
18
PATH=/sbin:/usr/sbin:/bin:/usr/bin
 
19
DESC="SELinux Context Translation System"
 
20
NAME=mcstransd
 
21
DAEMON=/sbin/mcstransd
 
22
DAEMON_ARGS=""
 
23
PIDFILE=/var/run/$NAME.pid
 
24
SCRIPTNAME=/etc/init.d/mcstrans
 
25
 
 
26
# Exit if the package is not installed
 
27
[ -x "$DAEMON" ] || exit 0
 
28
 
 
29
# Test to see if SELinux is enabled
 
30
[ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled || exit 0
 
31
 
 
32
# Read configuration variable file if it is present
 
33
[ -r /etc/default/mcstrans ] && . /etc/default/mcstrans
 
34
 
 
35
# Define LSB log_* functions.
 
36
# Depend on lsb-base (>= 3.2-14) to ensure that this file is present
 
37
# and status_of_proc is working.
 
38
. /lib/lsb/init-functions
 
39
 
 
40
# Read SELinux configuration file if it is present
 
41
[ -r /etc/selinux/config ] && . /etc/selinux/config
 
42
if [ -z "$SELINUXTYPE" -o ! -r "/etc/selinux/$SELINUXTYPE/setrans.conf" ]; then
 
43
        log_warning_msg "Daemon not started, configuration file not found."
 
44
        exit 0
 
45
fi
 
46
 
 
47
#
 
48
# Function that starts the daemon/service
 
49
#
 
50
do_start()
 
51
{
 
52
        # Return
 
53
        #   0 if daemon has been started
 
54
        #   1 if daemon was already running
 
55
        #   2 if daemon could not be started
 
56
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
 
57
                || return 1
 
58
 
 
59
        if ! [ -d /var/run/setrans ]; then
 
60
                mkdir -p /var/run/setrans
 
61
                [ -x /sbin/restorecon ] && /sbin/restorecon /var/run/setrans
 
62
        fi
 
63
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
 
64
                $DAEMON_ARGS \
 
65
                || return 2
 
66
 
 
67
        pidof $DAEMON > $PIDFILE
 
68
}
 
69
 
 
70
#
 
71
# Function that stops the daemon/service
 
72
#
 
73
do_stop()
 
74
{
 
75
        # Return
 
76
        #   0 if daemon has been stopped
 
77
        #   1 if daemon was already stopped
 
78
        #   2 if daemon could not be stopped
 
79
        #   other if a failure occurred
 
80
        start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
 
81
        RETVAL="$?"
 
82
        [ "$RETVAL" = 2 ] && return 2
 
83
 
 
84
        rm -f $PIDFILE
 
85
        return "$RETVAL"
 
86
}
 
87
 
 
88
#
 
89
# Function that sends a SIGHUP to the daemon/service
 
90
#
 
91
do_reload() {
 
92
        start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
 
93
        return 0
 
94
}
 
95
 
 
96
case "$1" in
 
97
  start)
 
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
  status)
 
114
        status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
 
115
        ;;
 
116
  reload|force-reload)
 
117
        log_daemon_msg "Reloading $DESC" "$NAME"
 
118
        do_reload
 
119
        log_end_msg $?
 
120
        ;;
 
121
  restart)
 
122
        log_daemon_msg "Restarting $DESC" "$NAME"
 
123
        do_stop
 
124
        case "$?" in
 
125
          0|1)
 
126
                do_start
 
127
                case "$?" in
 
128
                        0) log_end_msg 0 ;;
 
129
                        1) log_end_msg 1 ;; # Old process is still running
 
130
                        *) log_end_msg 1 ;; # Failed to start
 
131
                esac
 
132
                ;;
 
133
          *)
 
134
                # Failed to stop
 
135
                log_end_msg 1
 
136
                ;;
 
137
        esac
 
138
        ;;
 
139
  *)
 
140
        echo "Usage: $SCRIPTNAME {start|stop|status|restart|reload|force-reload}" >&2
 
141
        exit 3
 
142
        ;;
 
143
esac
 
144
 
 
145
: