summaryrefslogtreecommitdiff
path: root/net-dns/avahi/files/autoipd-openrc.sh
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-09-07 14:44:37 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-09-07 14:44:37 +0100
commitca84bff727f1c250efe6f86bbc4b0c98dd1e1933 (patch)
tree58bbfd473eb50669e561e80f8bbbcdf84af113b2 /net-dns/avahi/files/autoipd-openrc.sh
parent8230a3ea70a2f3f3f3c7d68511cab1fdf3d94b73 (diff)
net-dns/avahi : drop our ebuild, will use gentoo one from now on
Diffstat (limited to 'net-dns/avahi/files/autoipd-openrc.sh')
-rw-r--r--net-dns/avahi/files/autoipd-openrc.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/net-dns/avahi/files/autoipd-openrc.sh b/net-dns/avahi/files/autoipd-openrc.sh
deleted file mode 100644
index dec3aa05..00000000
--- a/net-dns/avahi/files/autoipd-openrc.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright (C) 2004-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# Contributed by Sven Wegener (swegener@gentoo.org)
-
-_config_vars="$_config_vars autoipd"
-
-autoipd_depend() {
- program /usr/sbin/avahi-autoipd
- after interface
-}
-
-autoipd_start() {
- _exists true || return 1
-
- eval args=\$autoipd_${IFVAR}
-
- ebegin "Starting avahi-autoipd"
- /usr/sbin/avahi-autoipd --daemonize --syslog --wait ${args} "${IFACE}"
- eend "${?}" || return 1
-
- _show_address
-
- return 0
-}
-
-autoipd_stop() {
- /usr/sbin/avahi-autoipd --check --syslog "${IFACE}" || return 0
-
- ebegin "Stopping avahi-autoipd"
- /usr/sbin/avahi-autoipd --kill --syslog "${IFACE}"
- eend "${?}"
-}