mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-29 13:22:21 +01:00
60 lines
2.0 KiB
Plaintext
60 lines
2.0 KiB
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/files/ucarp.initd-r1,v 1.1 2013/03/25 10:32:03 dev-zero Exp $
|
|
|
|
description="UCARP is a portable implementation of the CARP protocol"
|
|
description_logstatus="Logs the status of ${SVCNAME} to syslog"
|
|
description_demote="Demotes ${SVCNAME} from master to backup"
|
|
|
|
extra_started_commands="logstatus demote"
|
|
|
|
command="/usr/sbin/ucarp"
|
|
command_args="--interface=${UCARP_INTERFACE} \
|
|
--srcip=${UCARP_SOURCEADDRESS} \
|
|
--vhid=${UCARP_VHID} \
|
|
--passfile=${UCARP_PASSFILE} \
|
|
--addr=${UCARP_VIRTUALADDRESS} \
|
|
--upscript=${UCARP_UPSCRIPT} \
|
|
--downscript=${UCARP_DOWNSCRIPT} \
|
|
--xparam=${UCARP_VIRTUALPREFIX} \
|
|
${UCARP_OPTS}"
|
|
|
|
pidfile="/var/run/${SVCNAME}.pid"
|
|
command_background="yes"
|
|
|
|
required_files="${UCARP_PASSFILE} ${UCARP_UPSCRIPT} ${UCARP_DOWNSCRIPT}"
|
|
|
|
depend() {
|
|
need net
|
|
use logger
|
|
provide ucarp
|
|
}
|
|
|
|
start_pre() {
|
|
local required_vars='UCARP_INTERFACE UCARP_SOURCEADDRESS UCARP_VHID
|
|
UCARP_PASSFILE UCARP_VIRTUALADDRESS UCARP_UPSCRIPT
|
|
UCARP_DOWNSCRIPT UCARP_VIRTUALPREFIX'
|
|
|
|
local config_var=''
|
|
for config_var in $required_vars; do
|
|
if test -z "$(eval echo \$$config_var)"; then
|
|
eerror "Missing or empty config variable '$config_var'"
|
|
ewarn "You have to edit /etc/conf.d/${SVCNAME} first"
|
|
return 1
|
|
fi
|
|
done
|
|
}
|
|
|
|
logstatus() {
|
|
ebegin "Logging status of ${SVCNAME} to syslog"
|
|
start-stop-daemon --signal SIGUSR1 --pidfile "${pidfile}"
|
|
eend $?
|
|
}
|
|
|
|
demote() {
|
|
ebegin "Demote ${SVCNAME} from master to backup"
|
|
start-stop-daemon --signal SIGUSR2 --pidfile "${pidfile}"
|
|
eend $?
|
|
}
|