]> git.proxmox.com Git - pve-firewall.git/blob - debian/pve-firewall.init
API: add ability to restrict ref list to specified type
[pve-firewall.git] / debian / pve-firewall.init
1 #!/bin/sh
2
3 ### BEGIN INIT INFO
4 # Provides: pve-firewall
5 # Required-Start: $remote_fs $network pvefw-logger pve-cluster
6 # Required-Stop: $remote_fs $network pvefw-logger pve-cluster
7 # Default-Start: 2 3 4 5
8 # Default-Stop: 0 1 6
9 # Short-Description: Proxmox VE firewall
10 ### END INIT INFO
11
12 . /lib/lsb/init-functions
13
14 PATH=/sbin:/bin:/usr/bin:/usr/sbin
15 NAME=pve-firewall
16 DAEMON=/usr/sbin/$NAME
17 DESC="Proxmox VE firewall"
18 PIDFILE=/var/run/$NAME.pid
19
20 # Exit if the package is not installed
21 [ -x "$DAEMON" ] || exit 0
22
23 START_FIREWALL=yes
24
25 # Read configuration variable file if it is present
26 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
27
28 [ "$START_FIREWALL" = "yes" ] || exit 0
29
30 # Load the VERBOSE setting and other rcS variables
31 . /lib/init/vars.sh
32
33 # Define LSB log_* functions.
34 # Depend on lsb-base (>= 3.2-14) to ensure that this file is present
35 # and status_of_proc is working.
36 . /lib/lsb/init-functions
37
38 # avoid warnings about uninstalled locales
39 export LC_ALL="C"
40
41 case "$1" in
42 start)
43 log_daemon_msg "Starting $DESC" "$NAME"
44 $DAEMON start
45 log_end_msg $?
46 ;;
47 stop)
48 log_daemon_msg "Stopping $DESC" "$NAME"
49 $DAEMON stop
50 log_end_msg $?
51 ;;
52 status)
53 $DAEMON status
54 ;;
55 reload|restart|force-reload)
56 log_daemon_msg "Restarting $DESC" "$NAME"
57 if ( [ -e $PIDFILE ] && kill -0 `cat $PIDFILE`) then
58 start-stop-daemon --stop --quiet --pidfile $PIDFILE --signal HUP
59 else
60 $DAEMON start
61 fi
62 log_end_msg $?
63 ;;
64 *)
65 N=/etc/init.d/$NAME
66 echo "Usage: $N {start|stop|status|restart|force-reload}"
67 exit 1
68 ;;
69 esac
70
71 exit 0