summaryrefslogtreecommitdiffstats
path: root/service
diff options
context:
space:
mode:
authorEun-Ju KIm <eukim@redhat.com>2008-05-09 03:16:09 +0000
committerEun-Ju KIm <eukim@redhat.com>2008-05-09 03:16:09 +0000
commit20ae37592f30516cb23d138ff2d60cdc3f490723 (patch)
tree7a062d877a43e57a1d26bb737e0dadb6a51f6b3f /service
parent1bd1096da0802b74cf738c7dab22667abf951c97 (diff)
parent73a91036b96450f976c5e45d3478d4b6f905c79a (diff)
downloadinitscripts-20ae37592f30516cb23d138ff2d60cdc3f490723.tar.gz
initscripts-20ae37592f30516cb23d138ff2d60cdc3f490723.tar.xz
initscripts-20ae37592f30516cb23d138ff2d60cdc3f490723.zip
Merge branch 'master' of ssh://git.fedorahosted.org/git/initscripts
Diffstat (limited to 'service')
-rwxr-xr-xservice8
1 files changed, 4 insertions, 4 deletions
diff --git a/service b/service
index eb70c83c..d7551b56 100755
--- a/service
+++ b/service
@@ -35,7 +35,7 @@ while [ $# -gt 0 ]; do
*)
if ! is_ignored_file "${SERVICE}" \
&& [ -x "${SERVICEDIR}/${SERVICE}" ]; then
- env -i LANG="$LANG" PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/${SERVICE}" status
+ env -i PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/${SERVICE}" status
fi
;;
esac
@@ -44,8 +44,8 @@ while [ $# -gt 0 ]; do
elif [ $# -eq 2 -a "${2}" = "--full-restart" ]; then
SERVICE="${1}"
if [ -x "${SERVICEDIR}/${SERVICE}" ]; then
- env -i LANG="$LANG" PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/${SERVICE}" stop
- env -i LANG="$LANG" PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/${SERVICE}" start
+ env -i PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/${SERVICE}" stop
+ env -i PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/${SERVICE}" start
exit $?
fi
elif [ -z "${SERVICE}" ]; then
@@ -59,7 +59,7 @@ while [ $# -gt 0 ]; do
done
if [ -f "${SERVICEDIR}/${SERVICE}" ]; then
- env -i LANG="$LANG" PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/${SERVICE}" ${OPTIONS}
+ env -i PATH="$PATH" TERM="$TERM" "${SERVICEDIR}/${SERVICE}" ${OPTIONS}
else
echo $"${SERVICE}: unrecognized service" >&2
exit 1