]> git.proxmox.com Git - mirror_ovs.git/blame - debian/openvswitch-ipsec.init
debian: Fix build failure installing ovs-vswitchd.conf.db(5) manpage.
[mirror_ovs.git] / debian / openvswitch-ipsec.init
CommitLineData
a3acf0b0
JP
1#!/bin/sh
2#
3# Copyright (c) 2007, 2009 Javier Fernandez-Sanguino <jfs@debian.org>
4#
5# This is free software; you may redistribute it and/or modify
6# it under the terms of the GNU General Public License as
7# published by the Free Software Foundation; either version 2,
8# or (at your option) any later version.
9#
10# This is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License with
16# the Debian operating system, in /usr/share/common-licenses/GPL; if
17# not, write to the Free Software Foundation, Inc., 59 Temple Place,
18# Suite 330, Boston, MA 02111-1307 USA
19#
20### BEGIN INIT INFO
21# Provides: openvswitch-ipsec
bd9e5b0e 22# Required-Start: $network $local_fs $remote_fs openvswitch-switch
a3acf0b0
JP
23# Required-Stop: $remote_fs
24# Default-Start: 2 3 4 5
25# Default-Stop: 0 1 6
26# Short-Description: Open vSwitch GRE-over-IPsec daemon
27### END INIT INFO
28
29PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
30
31DAEMON=/usr/share/openvswitch/scripts/ovs-monitor-ipsec # Daemon's location
32NAME=ovs-monitor-ipsec # Introduce the short server's name here
33LOGDIR=/var/log/openvswitch # Log directory to use
34
35PIDFILE=/var/run/openvswitch/$NAME.pid
36
37test -x $DAEMON || exit 0
38
39. /lib/lsb/init-functions
40
41DODTIME=10 # Time to wait for the server to die, in seconds
42 # If this value is set too low you might not
43 # let some servers to die gracefully and
44 # 'restart' will not work
45
46set -e
47
48running_pid() {
49# Check if a given process pid's cmdline matches a given name
50 pid=$1
51 name=$2
52 [ -z "$pid" ] && return 1
53 [ ! -d /proc/$pid ] && return 1
54 cmd=`cat /proc/$pid/cmdline | tr "\000" " "|cut -d " " -f 2`
55 # Is this the expected server
56 [ "$cmd" != "$name" ] && return 1
57 return 0
58}
59
60running() {
61# Check if the process is running looking at /proc
62# (works for all users)
63
64 # No pidfile, probably no daemon present
65 [ ! -f "$PIDFILE" ] && return 1
66 pid=`cat $PIDFILE`
67 running_pid $pid $DAEMON || return 1
68 return 0
69}
70
71start_server() {
b0e62f3d
JP
72 if [ ! -d /var/run/openvswitch ]; then
73 install -d -m 755 -o root -g root /var/run/openvswitch
74 fi
75
00488a5e 76 /usr/share/openvswitch/scripts/ovs-monitor-ipsec \
65b23a2a 77 --pidfile=$PIDFILE --log-file --detach --monitor \
a3acf0b0
JP
78 unix:/var/run/openvswitch/db.sock
79
80 return 0
81}
82
83stop_server() {
84 if [ -e $PIDFILE ]; then
85 kill `cat $PIDFILE`
86 fi
87
88 return 0
89}
90
91force_stop() {
92# Force the process to die killing it manually
93 [ ! -e "$PIDFILE" ] && return
94 if running ; then
95 kill -15 $pid
96 # Is it really dead?
97044604 97 sleep "$DODTIME"
a3acf0b0
JP
98 if running ; then
99 kill -9 $pid
97044604 100 sleep "$DODTIME"
a3acf0b0
JP
101 if running ; then
102 echo "Cannot kill $NAME (pid=$pid)!"
103 exit 1
104 fi
105 fi
106 fi
107 rm -f $PIDFILE
108}
109
110
111case "$1" in
112 start)
113 log_daemon_msg "Starting $NAME"
114 # Check if it's running first
115 if running ; then
116 log_progress_msg "apparently already running"
117 log_end_msg 0
118 exit 0
119 fi
120 if start_server && running ; then
121 # It's ok, the server started and is running
122 log_end_msg 0
123 else
124 # Either we could not start it or it is not running
125 # after we did
126 # NOTE: Some servers might die some time after they start,
127 # this code does not try to detect this and might give
128 # a false positive (use 'status' for that)
129 log_end_msg 1
130 fi
131 ;;
132 stop)
133 log_daemon_msg "Stopping $NAME"
134 if running ; then
135 # Only stop the server if we see it running
136 stop_server
137 log_end_msg $?
138 else
139 # If it's not running don't do anything
140 log_progress_msg "apparently not running"
141 log_end_msg 0
142 exit 0
143 fi
144 ;;
145 force-stop)
146 # First try to stop gracefully the program
147 $0 stop
148 if running; then
149 # If it's still running try to kill it more forcefully
150 log_daemon_msg "Stopping (force) $NAME"
151 force_stop
152 log_end_msg $?
153 fi
154 ;;
155 restart|force-reload)
156 log_daemon_msg "Restarting $NAME"
157 stop_server
158 # Wait some sensible amount, some server need this
97044604 159 [ -n "$DODTIME" ] && sleep $DODTIME
a3acf0b0
JP
160 start_server
161 running
162 log_end_msg $?
163 ;;
164 status)
165 log_daemon_msg "Checking status of $NAME"
166 if running ; then
167 log_progress_msg "running"
168 log_end_msg 0
169 else
170 log_progress_msg "apparently not running"
171 log_end_msg 1
172 exit 1
173 fi
174 ;;
175 # Use this if the daemon cannot reload
176 reload)
177 log_warning_msg "Reloading $NAME daemon: not implemented, as the daemon"
178 log_warning_msg "cannot re-read the config file (use restart)."
179 ;;
180 *)
181 N=/etc/init.d/openvswitch-ipsec
182 echo "Usage: $N {start|stop|force-stop|restart|force-reload|status}" >&2
183 exit 1
184 ;;
185esac
186
187exit 0