db7ae00
--- avahi-0.6.15/initscript/fedora/avahi-dnsconfd.in.initscript	2006-11-22 16:46:17.000000000 +0100
db7ae00
+++ avahi-0.6.15/initscript/fedora/avahi-dnsconfd.in	2006-11-22 16:50:32.000000000 +0100
db7ae00
@@ -2,10 +2,10 @@
db7ae00
 #
db7ae00
 # avahi-daemon:       Starts the Avahi dns configuration daemon
db7ae00
 #
db7ae00
-# chkconfig: - 34 98 02
db7ae00
-# description: avahi-dnsconfd connects to a running avahi-daemon and runs  the  script
db7ae00
-#       /etc/avahi/dnsconf.action for each unicast DNS server that is announced
db7ae00
-#       on the local LAN. This is useful for configuring unicast DNS servers in
db7ae00
+# chkconfig: - 98 02
db7ae00
+# description: avahi-dnsconfd connects to a running avahi-daemon and runs  the  script \
db7ae00
+#       /etc/avahi/dnsconf.action for each unicast DNS server that is announced \
db7ae00
+#       on the local LAN. This is useful for configuring unicast DNS servers in \
db7ae00
 #       a DHCP-like fashion with mDNS.
db7ae00
 # processname: avahi-dnsconfd
db7ae00
 # config: 
db7ae00
@@ -23,7 +23,7 @@
db7ae00
 AVAHI_BIN=@sbindir@/avahi-dnsconfd
db7ae00
 test -x $AVAHI_BIN || exit 5
db7ae00
 
db7ae00
-LOCKFILE=/var/lock/subsys/avahi-daemon
db7ae00
+LOCKFILE=/var/lock/subsys/avahi-dnsconfd
db7ae00
 
db7ae00
 start() {
db7ae00
 	echo -n $"Starting Avahi DNS daemon... "
db7ae00
@@ -40,7 +40,7 @@
db7ae00
 }
db7ae00
 
db7ae00
 stop() {
db7ae00
-        echo -n "Shutting down Avahi DNS daemon: "
db7ae00
+        echo -n $"Shutting down Avahi DNS daemon: "
db7ae00
         $AVAHI_BIN -k
db7ae00
 	RETVAL=$?
db7ae00
 	[ $RETVAL = 0 ] && success $"$base shutdown" || failure $"$base shutdown"
db7ae00
@@ -50,7 +50,7 @@
db7ae00
 }
db7ae00
 
db7ae00
 reload() {
db7ae00
-        echo -n "Reloading Avahi DNS daemon... "
db7ae00
+        echo -n $"Reloading Avahi DNS daemon... "
db7ae00
         $AVAHI_BIN -r
db7ae00
 	RETVAL=$?
db7ae00
 	[ $RETVAL = 0 ] && success $"$base startup" || failure $"$base startup"
db7ae00
@@ -76,7 +76,7 @@
db7ae00
 	;;
db7ae00
   status)
db7ae00
         $AVAHI_BIN -c
db7ae00
-	[ $? = 0 ] && echo "Avahi DNS daemon is running" || echo "Avahi DNS daemon is not running"
db7ae00
+	[ $? = 0 ] && echo $"Avahi DNS daemon is running" || echo $"Avahi DNS daemon is not running"
db7ae00
 	;;
db7ae00
   restart)
db7ae00
 	restart