summaryrefslogtreecommitdiff
path: root/net-misc/ucarp/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-01-22 20:28:19 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-01-22 20:28:19 +0000
commitabaa75b10f899ada8dd05b23cc03205064394bc6 (patch)
treeeca3dd248b73b92013cba00a0fcc1edf2696e19a /net-misc/ucarp/files
parent24fd814c326e282c4321965c31f341dad77e270d (diff)
gentoo resync : 22.01.2021
Diffstat (limited to 'net-misc/ucarp/files')
-rw-r--r--net-misc/ucarp/files/ucarp.initd-r158
1 files changed, 0 insertions, 58 deletions
diff --git a/net-misc/ucarp/files/ucarp.initd-r1 b/net-misc/ucarp/files/ucarp.initd-r1
deleted file mode 100644
index 14d84dc01ea4..000000000000
--- a/net-misc/ucarp/files/ucarp.initd-r1
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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 $?
-}