You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-cluster/keepalived/files/keepalived.init-r1

22 lines
539 B

#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
use logger
# The interfaces do not actually need to exist to start, it handles them gracefully.
use net
}
command="/usr/sbin/keepalived"
command_args="${KEEPALIVED_OPTS}"
extra_started_commands="reload"
pidfile="/run/${RC_SVCNAME}.pid"
required_files="/etc/keepalived/keepalived.conf"
reload() {
ebegin "Reloading ${RC_SVCNAME}"
start-stop-daemon --signal HUP --pidfile "${pidfile}"
eend $?
}