From 29f7e335927d4c1fb151124de8cdf01fb87723fa Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Tue, 13 Oct 2015 07:59:50 -0500 Subject: [PATCH] openrc-run.sh: allow spaces in required_{files,dirs} X-Gentoo-Bug: 562320 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=562320 --- sh/openrc-run.sh.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sh/openrc-run.sh.in b/sh/openrc-run.sh.in index 33dc59c5..e9369e44 100644 --- a/sh/openrc-run.sh.in +++ b/sh/openrc-run.sh.in @@ -221,16 +221,16 @@ done # Load our script sourcex "$RC_SERVICE" -for _d in $required_dirs; do - if [ ! -d $_d ]; then +eval "printf '%s\n' $required_dirs" | while read _d; do + if [ ! -d "$_d" ]; then eerror "$RC_SVCNAME: \`$_d' is not a directory" exit 1 fi done unset _d -for _f in $required_files; do - if [ ! -r $_f ]; then +eval "printf '%s\n' $required_files" | while read _f; do + if [ ! -r "$_f" ]; then eerror "$RC_SVCNAME: \`$_f' is not readable" exit 1 fi