summaryrefslogtreecommitdiff
path: root/nonsystemd/openrc-desktop/avahi-daemon.initd
diff options
context:
space:
mode:
Diffstat (limited to 'nonsystemd/openrc-desktop/avahi-daemon.initd')
-rw-r--r--nonsystemd/openrc-desktop/avahi-daemon.initd29
1 files changed, 0 insertions, 29 deletions
diff --git a/nonsystemd/openrc-desktop/avahi-daemon.initd b/nonsystemd/openrc-desktop/avahi-daemon.initd
deleted file mode 100644
index 3db552903..000000000
--- a/nonsystemd/openrc-desktop/avahi-daemon.initd
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/openrc-run
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-extra_started_commands="reload"
-
-depend() {
- before netmount nfsmount
- use net
- need dbus
-}
-
-start() {
- ebegin "Starting avahi-daemon"
- /usr/bin/avahi-daemon -D
- eend $?
-}
-
-stop() {
- ebegin "Stopping avahi-daemon"
- /usr/bin/avahi-daemon -k
- eend $?
-}
-
-reload() {
- ebegin "Reloading avahi-daemon"
- /usr/bin/avahi-daemon -r
- eend $?
-}