blob: a3f9db9ffee8a66cf46a9c9b55909b5a1d579d25 (
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/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/files/init-keepalived,v 1.5 2012/02/28 02:31:56 robbat2 Exp $
depend() {
use logger
# The interfaces do not actually need to exist to start, it handles them gracefully.
use net
}
extra_commands="checkconfig"
PIDFILE=/var/run/keepalived.pid
checkconfig() {
# keepalived has a config check command, but it does not work while the daemon is running!
if [ ! -e /etc/keepalived/keepalived.conf ] ; then
eerror "You need an /etc/keepalived/keepalived.conf file to run keepalived"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting Keepalived"
start-stop-daemon --start --quiet --pidfile $PIDFILE \
--exec /usr/sbin/keepalived -- $opts
eend $?
}
stop() {
ebegin "Stopping Keepalived"
start-stop-daemon --stop --quiet --pidfile $PIDFILE
eend $?
}
|