X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=initscript%2Ffedora%2Favahi-daemon.in;h=5a8f43005888c597ae5fe446a5de7c0855dd4edf;hb=d87e2864268ae7d7b12f144739cc4a07ef997f56;hp=69fac9bad1901bdb05df1df2ab618f099780389e;hpb=7a49810ba00b19a75189689eb8c3948dbc721966;p=catta diff --git a/initscript/fedora/avahi-daemon.in b/initscript/fedora/avahi-daemon.in index 69fac9b..5a8f430 100644 --- a/initscript/fedora/avahi-daemon.in +++ b/initscript/fedora/avahi-daemon.in @@ -1,30 +1,47 @@ -#! /bin/sh +#!/bin/sh # -# avahi-daemon: Starts the Avahi Daemon +# avahi-daemon: Starts the Avahi mDNS/DNS-SD Stack # -# chkconfig: 345 96 02 -# description: This is a daemon which runs on client machines to perform \ -# Zeroconf service discovery on a network. avahi-daemon must be \ -# running on systems that use Avahi for service discovery. \ -# Avahi-daemon should not be running otherwise. +# chkconfig: 345 24 02 +# description: This is a daemon which runs on client machines to \ +# perform Zeroconf service discovery on a \ +# network. avahi-daemon must be running on systems that \ +# use Avahi for service discovery. Avahi-daemon should \ +# not be running otherwise. # processname: avahi-daemon -# config: +# pidfile: @localstatedir@/run/avahi-daemon/pid -OTHER_AVAHI_OPTS="" - -# Source function library. -. /etc/init.d/functions -. /etc/sysconfig/network +### BEGIN INIT INFO +# Required-Start: messagebus +# Required-Stop: messagebus +# Should-Start: $syslog $network $local_fs +# Should-Stop: $syslog $local_fs +# Default-Start: 3 4 5 +# Default-Stop: 0 1 2 6 +# Short-Description: Starts the Avahi Daemon +# Description: This is a daemon which runs on client machines to +# perform Zeroconf service discovery on a +# network. avahi-daemon must be running on systems +# that use Avahi for service discovery. +# Avahi-daemon should not be running otherwise. +### END INIT INFO AVAHI_BIN=@sbindir@/avahi-daemon +AVAHI_OPTS="-D" -if [ "$1" == 'status' ]; then +if [ "$1" = 'status' ]; then test -x $AVAHI_BIN || exit 4 -else +else test -x $AVAHI_BIN || exit 5 fi -LOCKFILE=/var/lock/subsys/avahi-daemon +# Source function library. +. /etc/init.d/functions +. /etc/sysconfig/network + +LOCKFILE=@localstatedir@/lock/subsys/avahi-daemon +PIDFILE=@localstatedir@/run/avahi-daemon/pid +RETVAL=0 base=${0##*/} @@ -36,33 +53,26 @@ start() { if [ -s /etc/localtime ]; then cp -fp /etc/localtime /etc/avahi/etc >/dev/null 2>&1 fi; - $AVAHI_BIN -D - RETVAL=$? - if [ $RETVAL = 0 ]; then - touch $LOCKFILE - success $"$base startup" - else - failure $"$base startup" - fi - echo + daemon --pidfile=${PIDFILE} $AVAHI_BIN $AVAHI_OPTS + RETVAL=$? + echo + [ $RETVAL -eq 0 ] && touch ${LOCKFILE} return $RETVAL } stop() { echo -n $"Shutting down Avahi daemon: " - $AVAHI_BIN -k - RETVAL=$? - [ $RETVAL = 0 ] && success $"$base shutdown" || failure $"$base shutdown" - rm -f $LOCKFILE - echo + killproc -p ${PIDFILE} $AVAHI_BIN + RETVAL=$? + [ $RETVAL -eq 0 ] && rm -f ${LOCKFILE} ${PIDFILE} + echo return $RETVAL } reload() { echo -n $"Reloading Avahi daemon... " - $AVAHI_BIN -r + killproc -p ${PIDFILE} $AVAHI_BIN -HUP RETVAL=$? - [ $RETVAL = 0 ] && success $"$base reload" || failure $"$base reload" echo return $RETVAL } @@ -83,15 +93,14 @@ case "$1" in stop ;; status) - $AVAHI_BIN -c - RETVAL=$? - [ $RETVAL = 0 ] && echo $"Avahi daemon is running" || echo $"Avahi daemon is not running" + status -p ${PIDFILE} $AVAHI_BIN + RETVAL=$? ;; restart) restart ;; reload) - reload + reload ;; condrestart) if [ -f $LOCKFILE ]; then @@ -105,4 +114,3 @@ case "$1" in esac exit $RETVAL -