diff options
| author | Peter Pentchev <roam@FreeBSD.org> | 2001-12-12 10:12:20 +0000 |
|---|---|---|
| committer | Peter Pentchev <roam@FreeBSD.org> | 2001-12-12 10:12:20 +0000 |
| commit | 1e106575d2aec4df427febddbe2b84ddfbc155d5 (patch) | |
| tree | b583faf3b08432615e55370d50b639667ff58fb2 | |
| parent | 0e3b6d50d44c5dbaa9891f683efa9bfc5ef71b36 (diff) | |
Notes
| -rw-r--r-- | etc/rc | 3 | ||||
| -rw-r--r-- | etc/rc.shutdown | 3 |
2 files changed, 6 insertions, 0 deletions
@@ -813,6 +813,9 @@ case ${local_startup} in *) echo -n 'Local package initialization:' slist="" + if [ -z "${script_name_sep}" ]; then + script_name_sep=" " + fi for dir in ${local_startup}; do if [ -d "${dir}" ]; then for script in ${dir}/*.sh; do diff --git a/etc/rc.shutdown b/etc/rc.shutdown index f6c59c9ae562..6a7ca8acf690 100644 --- a/etc/rc.shutdown +++ b/etc/rc.shutdown @@ -103,6 +103,9 @@ case ${local_startup} in ;; *) slist="" + if [ -z "${script_name_sep}" ]; then + script_name_sep=" " + fi for dir in ${local_startup}; do if [ -d "${dir}" ]; then for script in ${dir}/*.sh; do |
