[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH OSSTEST] standalone: Handle multiple configuration files.
OSSTEST_CONFIG can actually be a colon separate list of files, so take this into account when sanity checking it. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- standalone | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/standalone b/standalone index c1139f8..caf3fd5 100755 --- a/standalone +++ b/standalone @@ -112,10 +112,19 @@ if [ ! -f standalone.db ] ; then exit 1 fi -if [ -z "$config" -o ! -r "$config" ] ; then - echo "Cannot read config." >&2 +if [ -z "$config" ] ; then + echo "No config specified." >&2 exit 1 fi +IFS_saved=$IFS +IFS=: +for c in $config ; do + if [ -z "$c" -o ! -r "$c" ] ; then + echo "Cannot read config $c." >&2 + exit 1 + fi +done +IFS=$IFS_saved need_flight() { if [ -z "$flight" ] ; then -- 2.1.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |