Let people know when a startup script is skipped because it is not

executable.

Suggested by:	gad
This commit is contained in:
David E. O'Brien 2001-09-25 01:55:21 +00:00
parent f784e0d137
commit 2e78f3945a

2
etc/rc
View File

@ -800,6 +800,8 @@ case ${local_startup} in
(set -T
trap 'exit 1' 2
${script} start)
else
echo "Skipping ${script}, not executable"
fi
done
IFS="${script_save_sep}"