aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--initscripts.spec5
-rwxr-xr-xservice12
2 files changed, 13 insertions, 4 deletions
diff --git a/initscripts.spec b/initscripts.spec
index 1644374a..2ab7ab71 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -244,6 +244,11 @@ rm -rf $RPM_BUILD_ROOT
%dir /etc/locale/*/LC_MESSAGES
%changelog
+* Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.de>
+- /sbin/service: set PATH before calling startup scripts
+ HOME and TERM are also set during bootup, but they should not make
+ a difference for well-written daemons.
+
* Mon Jul 15 2002 Bill Nottingham <notting@redhat.com>
- fix boot-time cleanup of /var
- update po files
diff --git a/service b/service
index f5a3406d..d9144ebb 100755
--- a/service
+++ b/service
@@ -1,5 +1,9 @@
#!/bin/sh
+# Set up a default search path.
+PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin"
+export PATH
+
VERSION="`basename $0` ver. 0.91"
USAGE="Usage: `basename $0` < option > | --status-all | \
[ service_name [ command | --full-restart ] ]"
@@ -32,7 +36,7 @@ while [ $# -gt 0 ]; do
;;
*)
if [ -x "${SERVICEDIR}/${SERVICE}" ]; then
- env -i LANG=$LANG "${SERVICEDIR}/${SERVICE}" status
+ env -i LANG=$LANG PATH=$PATH "${SERVICEDIR}/${SERVICE}" status
fi
;;
esac
@@ -42,8 +46,8 @@ while [ $# -gt 0 ]; do
SERVICE="${1}"
cd /
if [ -x "${SERVICEDIR}/${SERVICE}" ]; then
- env -i LANG=$LANG "${SERVICEDIR}/${SERVICE}" stop
- env -i LANG=$LANG "${SERVICEDIR}/${SERVICE}" start
+ env -i LANG=$LANG PATH=$PATH "${SERVICEDIR}/${SERVICE}" stop
+ env -i LANG=$LANG PATH=$PATH "${SERVICEDIR}/${SERVICE}" start
exit $?
fi
elif [ -z "${SERVICE}" ]; then
@@ -57,7 +61,7 @@ while [ $# -gt 0 ]; do
done
if [ -x "${SERVICEDIR}/${SERVICE}" ]; then
- env -i LANG=$LANG "${SERVICEDIR}/${SERVICE}" ${OPTIONS}
+ env -i LANG=$LANG PATH=$PATH "${SERVICEDIR}/${SERVICE}" ${OPTIONS}
else
echo $"${SERVICE}: unrecognized service" >&2
exit 1