openbsd-ports/net/avahi/pkg/avahi_daemon.rc
ajacoutot 4ec44530ca Simplify after recent rc.subr change.
The framework is now stable and we will start documenting it (at last).
2010-12-27 14:50:22 +00:00

23 lines
305 B
Bash

#!/bin/sh
#
# $OpenBSD: avahi_daemon.rc,v 1.5 2010/12/27 14:50:23 ajacoutot Exp $
daemon="${TRUEPREFIX}/sbin/avahi-daemon"
daemon_flags="-D"
. /etc/rc.d/rc.subr
rc_check() {
${daemon} --check
}
rc_reload() {
${daemon} --reload 2> /dev/null
}
rc_stop() {
${daemon} --kill 2> /dev/null
}
rc_cmd $1