File: init.archlinux.sh

package info (click to toggle)
shorewall6 4.4.11.6-1%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,244 kB
  • ctags: 63
  • sloc: sh: 4,279; makefile: 74
file content (60 lines) | stat: -rwxr-xr-x 1,088 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
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash

OPTIONS="-f"

if [ -f /etc/sysconfig/shorewall6 ] ; then
	. /etc/sysconfig/shorewall6
elif [ -f /etc/default/shorewall6 ] ; then
	. /etc/default/shorewall6
fi

# if you want to override options, do so in /etc/sysconfig/shorewall6 or
# in /etc/default/shorewall6 --
# i strongly encourage you use the latter, since /etc/sysconfig/ does not exist.

. /etc/rc.conf
. /etc/rc.d/functions

DAEMON_NAME="shorewall6" # of course shorewall6 is NOT a deamon.

export SHOREWALL_INIT_SCRIPT=1

case "$1" in
	start)
		stat_busy "Starting $DAEMON_NAME"
		/sbin/shorewall6 $OPTIONS start &>/dev/null
		if [ $? -gt 0 ]; then
			stat_fail
		else
			add_daemon $DAEMON_NAME
			stat_done
		fi
		;;


	stop)
		stat_busy "Stopping $DAEMON_NAME"
		/sbin/shorewall6 stop &>/dev/null
		if [ $? -gt 0 ]; then
			stat_fail
		else
			rm_daemon $DAEMON_NAME
			stat_done
		fi
		;;

	restart|reload)
		stat_busy "Restarting $DAEMON_NAME"
		/sbin/shorewall6 restart &>/dev/null
		if [ $? -gt 0  ]; then
			stat_fail
		else
			stat_done
		fi
		;;

	*)
		echo "usage: $0 {start|stop|restart}"
esac
exit 0