Description of problem: 1. Start of already started avahi-dnsconfd service should return 0 # service avahi-dnsconfd status ; echo $? Avahi DNS daemon is running 0 # service avahi-dnsconfd start ; echo $? Starting Avahi DNS daemon... [FAILED] 1 now: 1 expected: 0 2. Stop of already stopped avahi-dnsconfd should return 0 # service avahi-dnsconfd stop ; echo $? Shutting down Avahi DNS daemon: [ OK ] 0 # service avahi-dnsconfd stop ; echo $? Shutting down Avahi DNS daemon: [FAILED] 1 now: 1 expected: 0 3. Status of stopped avahi-dnsconfd should return 3 # service avahi-dnsconfd stop ; echo $? Shutting down Avahi DNS daemon: [ OK ] 0 # service avahi-dnsconfd status ; echo $? Avahi DNS daemon is not running 1 now: 1 expected: 3 4. Status of stopped avahi-dnsconfd with /var/lock/subsys/avahi-dnsconfd present: # touch /var/lock/subsys/avahi-dnsconfd # service avahi-dnsconfd status ; echo $? Avahi DNS daemon is not running 1 now: 1 expected: 2 5. Init script should return code "4" if restarting service under nonprivileged user: # su testuserqa -c "service $SERVICE restart"; echo $? restart: unrecognized service 1 now: 1 expected: 4 6. force-reload action should be supported 7. reload action is not documented # service avahi-dnsconfd statusasd ; echo $? Usage: /etc/init.d/avahi-dnsconfd {start|stop|status|restart|condrestart} 2 # service avahi-dnsconfd reload ; echo $? Reloading Avahi DNS daemon... [ OK ] 0
This bug appears to have been reported against 'rawhide' during the Fedora 12 development cycle. Changing version to '12'. More information and reason for this action is here: http://fedoraproject.org/wiki/BugZappers/HouseKeeping
*** This bug has been marked as a duplicate of bug 600430 ***