summaryrefslogtreecommitdiff
path: root/community-testing/ipvsadm/ipvsadm.rc
blob: 91ed32e3bd8fbed220896de7b87f6186da60c034 (plain)
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
#!/bin/bash

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

case "$1" in
	start)
    stat_busy 'Loading IPVS table'
		if [[ -f $IPVSADM_CONF ]] && /sbin/ipvsadm-restore < "$IPVSADM_CONF"; then
			add_daemon ipvsadm
			stat_done
		else
			stat_fail
		fi
		;;
	stop)
		status 'Clearing IPVS table' /sbin/ipvsadm -C
		rm_daemon ipvsadm
		;;
	restart)
		$0 stop
		sleep 1
		$0 start
		;;
	save)
		stat_busy 'Saving IPVS table'
		if /sbin/ipvsadm-save -n > "$IPVSADM_CONF" 2>/dev/null; then
			stat_done
    else
			stat_fail
		fi
		;;
	*)
		echo "usage: ${0##*/} {start|stop|restart|save}"
esac
exit 0

# vim:set ts=2 sw=2 ft=sh et: