1#!/sbin/runscript 2# Copyright 1999-2007 Gentoo Foundation 3# Distributed under the terms of the GNU General Public License v2 4 5opts="reload" 6 7depend() { 8 before netmount nfsmount 9 use net 10 need dbus 11} 12 13start() { 14 ebegin "Starting avahi-daemon" 15 @sbindir@/avahi-daemon -D 16 eend $? 17} 18 19stop() { 20 ebegin "Stopping avahi-daemon" 21 @sbindir@/avahi-daemon -k 22 eend $? 23} 24 25reload() { 26 ebegin "Reloading avahi-daemon" 27 @sbindir@/avahi-daemon -r 28 eend $? 29} 30