]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Remove a bogus space from the log messages.
authorAndrew Ruthven <andrew@etc.gen.nz>
Wed, 9 Apr 2008 02:29:15 +0000 (14:29 +1200)
committerAndrew Ruthven <andrew@etc.gen.nz>
Wed, 9 Apr 2008 02:29:15 +0000 (14:29 +1200)
debian/init.d

index 50a1fe1e4e013b7de1de4b9ea776817bdd84bc35..1c38c8c04b0cc0f41e17f0ec452dbf377e032830 100644 (file)
@@ -56,7 +56,7 @@ set -e
 
 case "$1" in
   start|reload|refresh|restart|force-reload)
-    log_daemon_msg "Updating $DESC " "$NAME"
+    log_daemon_msg "Updating $DESC" "$NAME"
     [ ! -f /var/run/motd.orig ] && cp /var/run/motd /var/run/motd.orig
 
     cp /var/run/motd.orig /var/run/motd.new
@@ -68,7 +68,7 @@ case "$1" in
     log_end_msg 0
     ;;
   stop)
-    log_daemon_msg "Stopping $DESC " "$NAME"
+    log_daemon_msg "Stopping $DESC" "$NAME"
     [ -f /var/run/motd.orig ] && cp /var/run/motd.orig /var/run/motd
     log_end_msg 0
     ;;