aboutsummaryrefslogtreecommitdiffstats
path: root/testing/keepalived/keepalived.initd
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2016-11-19 02:33:33 +0100
committerJakub Jirutka <jakub@jirutka.cz>2016-11-19 02:34:01 +0100
commit813ce7dc6afa78c1ef3e67ada1d8005557efc540 (patch)
treea06f35c0ed370816814b149286caa4be34ac21f1 /testing/keepalived/keepalived.initd
parent430f0751b62c42901c4cbedea3e6baeceb7314e6 (diff)
downloadaports-813ce7dc6afa78c1ef3e67ada1d8005557efc540.tar.bz2
aports-813ce7dc6afa78c1ef3e67ada1d8005557efc540.tar.xz
community/keepalived: move from testing
Diffstat (limited to 'testing/keepalived/keepalived.initd')
-rw-r--r--testing/keepalived/keepalived.initd23
1 files changed, 0 insertions, 23 deletions
diff --git a/testing/keepalived/keepalived.initd b/testing/keepalived/keepalived.initd
deleted file mode 100644
index 760c360c89..0000000000
--- a/testing/keepalived/keepalived.initd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-extra_commands="reload"
-
-command="/usr/sbin/keepalived"
-command_args="${KEEPALIVED_OPTS}"
-pidfile="/run/keepalived.pid"
-required_files="/etc/keepalived/keepalived.conf"
-
-depend() {
- use logger
- # The interfaces do not actually need to exist to start,
- # it handles them gracefully.
- use net
-}
-
-reload() {
- ebegin "Reloading keepalived.conf"
- start-stop-daemon --pidfile $pidfile --signal HUP
- eend $?
-}