From c87fdd521d1301666d76ed190f46423a16707d09 Mon Sep 17 00:00:00 2001 From: obrien Date: Mon, 1 Oct 2001 21:30:27 +0000 Subject: Tweak the Skipping ${script} logic to also handle symlinks. Also echo with "-n". --- etc/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'etc/rc') diff --git a/etc/rc b/etc/rc index 603158e..0af115d 100644 --- a/etc/rc +++ b/etc/rc @@ -806,8 +806,8 @@ case ${local_startup} in (set -T trap 'exit 1' 2 ${script} start) - elif [ -f "${script}" ]; then - echo "Skipping ${script}, not executable" + elif [ -f "${script}" -or -l "${script}" ]; then + echo -n " Skipping ${script}, not executable" fi done IFS="${script_save_sep}" -- cgit v1.1