浏览代码

Remove stray $ character from a bunch of init scripts

Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Luca Ceresoli 13 年之前
父节点
当前提交
1a994d58af

+ 1 - 1
fs/skeleton/etc/init.d/S40network

@@ -17,7 +17,7 @@ case "$1" in
 	"$0" start
 	;;
   *)
-	echo $"Usage: $0 {start|stop|restart}"
+	echo "Usage: $0 {start|stop|restart}"
 	exit 1
 esac
 

+ 1 - 1
package/at/S99at

@@ -31,7 +31,7 @@ case "$1" in
 	restart
 	;;
   *)
-	echo $"Usage: $0 {start|stop|restart}"
+	echo "Usage: $0 {start|stop|restart}"
 	exit 1
 esac
 

+ 1 - 1
package/busybox/S01logging

@@ -19,7 +19,7 @@ case "$1" in
   restart|reload)
 	;;
   *)
-	echo $"Usage: $0 {start|stop|restart}"
+	echo "Usage: $0 {start|stop|restart}"
 	exit 1
 esac
 

+ 1 - 1
package/busybox/S10mdev

@@ -13,7 +13,7 @@ case "$1" in
   restart|reload)
 	;;
   *)
-	echo $"Usage: $0 {start|stop|restart}"
+	echo "Usage: $0 {start|stop|restart}"
 	exit 1
 esac
 

+ 1 - 1
package/dbus/S30dbus

@@ -72,7 +72,7 @@ case "$1" in
         RETVAL=$?
         ;;
     *)
-        echo $"Usage: $0 {start|stop|status|restart|condrestart|reload}"
+        echo "Usage: $0 {start|stop|status|restart|condrestart|reload}"
         ;;
 esac
 exit $RETVAL

+ 1 - 1
package/dropbear/S50dropbear

@@ -48,7 +48,7 @@ case "$1" in
   	restart
 	;;
   *)
-	echo $"Usage: $0 {start|stop|restart}"
+	echo "Usage: $0 {start|stop|restart}"
 	exit 1
 esac
 

+ 1 - 1
package/gpsd/S50gpsd

@@ -33,7 +33,7 @@ case "$1" in
         restart
         ;;
   *)
-        echo $"Usage: $0 {start|stop|restart}"
+        echo "Usage: $0 {start|stop|restart}"
         exit 1
 esac
 

+ 1 - 1
package/multimedia/mpd/S95mpd

@@ -25,6 +25,6 @@ case "$1" in
 		start
 		;;
 	*)
-		echo $"Usage: $0 {start|stop|restart}"
+		echo "Usage: $0 {start|stop|restart}"
 		exit 1
 esac

+ 3 - 3
package/netplug/S29netplug

@@ -39,7 +39,7 @@ fi
 case "$1" in
   start)
 	# Start daemon.
-	echo -n $"Starting network plug daemon: "
+	echo -n "Starting network plug daemon: "
 	start-stop-daemon -S -q -p /var/run/netplugd.pid -x /sbin/netplugd ${NETPLUGDARGS}
 	RETVAL=$?
 	echo
@@ -47,7 +47,7 @@ case "$1" in
 	;;
   stop)
 	# Stop daemon.
-	echo -n $"Shutting down network plug daemon: "
+	echo -n "Shutting down network plug daemon: "
 	start-stop-daemon -K -n netplugd
 	RETVAL=$?
 	echo
@@ -61,7 +61,7 @@ case "$1" in
 	[ -f /var/lock/subsys/netplugd ] && $0 restart || :
 	;;
   *)
-	echo $"Usage: $0 {start|stop|restart}"
+	echo "Usage: $0 {start|stop|restart}"
 	RETVAL=1
 	;;
 esac

+ 1 - 1
package/openssh/S50sshd

@@ -64,7 +64,7 @@ case "$1" in
   	restart
 	;;
   *)
-	echo $"Usage: $0 {start|stop|restart}"
+	echo "Usage: $0 {start|stop|restart}"
 	exit 1
 esac
 

+ 1 - 1
package/rsyslog/S01rsyslog

@@ -30,7 +30,7 @@ case "$1" in
 	restart
 	;;
   *)
-	echo $"Usage: $0 {start|stop|restart}"
+	echo "Usage: $0 {start|stop|restart}"
 	exit 1
 esac
 

+ 1 - 1
package/stunnel/S50stunnel

@@ -29,7 +29,7 @@ case "$1" in
 	restart
 	;;
   *)
-	echo $"Usage: $0 {start|stop|restart}"
+	echo "Usage: $0 {start|stop|restart}"
 	exit 1
 esac