summaryrefslogtreecommitdiff
blob: c4f58ee567fcd5898a9ab239bd7d5608332d3364 (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
#!/sbin/openrc-run
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

extra_commands="save"

depend() {
        need net
}

checkconfig() {
	if [ ! -f /var/lib/ipvsadm/rules-save ] ; then
		eerror "Not starting ipvsadm. First create some rules then run"
		eerror "/etc/init.d/ipvsadm save"
		return 1
	fi
}

start() {
	ebegin "Starting ipvsadm"
	einfo "Clearing previous rules"
	ipvsadm -C
	ipvsadm-restore < /var/lib/ipvsadm/rules-save
	eend $?
}

stop() {
	ebegin "Stopping ipvsadm"
	eend $?
}

save() {
	ebegin "Saving ipvsadm state"
	ipvsadm-save > /var/lib/ipvsadm/rules-save
	eend $?
}