aboutsummaryrefslogtreecommitdiffstats
path: root/service
diff options
context:
space:
mode:
Diffstat (limited to 'service')
-rwxr-xr-xservice8
1 files changed, 4 insertions, 4 deletions
diff --git a/service b/service
index 67fb3592..38d54a25 100755
--- a/service
+++ b/service
@@ -7,7 +7,7 @@ SERVICE=
SERVICEDIR="/etc/init.d"
if [ $# -eq 0 ]; then
- echo "${USAGE}" >&2
+ echo $"${USAGE}" >&2
exit 1
fi
@@ -15,11 +15,11 @@ while [ $# -gt 0 ]
do
case "${1}" in
--help | -h | --h* )
- echo "${USAGE}" >&2
+ echo $"${USAGE}" >&2
exit 0
;;
--version | -V )
- echo "${VERSION}" >&2
+ echo $"${VERSION}" >&2
exit 0
;;
*)
@@ -59,6 +59,6 @@ done
if [ -x "${SERVICEDIR}/${SERVICE}" ]; then
"${SERVICEDIR}/${SERVICE}" ${OPTIONS}
else
- echo "${SERVICE}: unrecognized service" >&2
+ echo $"${SERVICE}: unrecognized service" >&2
exit 1
fi