From db27ecf5703cb7e8734fb5737abec4be6a012f8f Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Mon, 1 Oct 2001 22:52:32 +0000 Subject: [PATCH] Add ()'s around the warning message when skipping a startup script. Also don't give the whole path, just the script name. Submitted by: des Requested by: jhb --- etc/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rc b/etc/rc index 0af115d26f70..d47f2eca747d 100644 --- a/etc/rc +++ b/etc/rc @@ -807,7 +807,7 @@ case ${local_startup} in trap 'exit 1' 2 ${script} start) elif [ -f "${script}" -or -l "${script}" ]; then - echo -n " Skipping ${script}, not executable" + echo -n " (skipping ${script##*/}, not executable)" fi done IFS="${script_save_sep}"