aboutsummaryrefslogtreecommitdiffstats
path: root/src/testdinit
diff options
context:
space:
mode:
Diffstat (limited to 'src/testdinit')
-rwxr-xr-xsrc/testdinit10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/testdinit b/src/testdinit
index 67ea8c37..a6500991 100755
--- a/src/testdinit
+++ b/src/testdinit
@@ -11,14 +11,14 @@
case "$1" in
start)
# Start daemons.
- echo -n "Starting testd: "
+ echo -n $"Starting testd: "
testd &
echo
touch /var/lock/subsys/testd
;;
stop)
# Stop daemons.
- echo -n "Shutting down testd: "
+ echo -n $"Shutting down testd: "
killproc testd
echo
rm -f /var/lock/subsys/testd
@@ -29,15 +29,15 @@ case "$1" in
exit $?
;;
restart)
- echo -n "Shutting down testd: "
+ echo -n $"Shutting down testd: "
killproc testd
echo
- echo -n "Starting testd: "
+ echo -n $"Starting testd: "
testd &
echo
;;
*)
- echo "Usage: testd {start|stop|status|restart}"
+ echo $"Usage: testd {start|stop|status|restart}"
exit 1
esac