From 4079043456017586f54de57a1832ea0e0c4e7b16 Mon Sep 17 00:00:00 2001 From: Jerry Vonau Date: Fri, 10 Nov 2017 16:18:35 -0600 Subject: [PATCH] runtags failsafe - as iiab.yml references config_vars.yml --- runtags | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtags b/runtags index 45ee507e7..9c4de08a3 100755 --- a/runtags +++ b/runtags @@ -14,6 +14,11 @@ then exit fi +if [ ! -f /etc/iiab/config_vars.yml ]; then + mkdir -p /etc/iiab + echo "{}" > /etc/iiab/config_vars.yml +fi + tags=$(echo $1 | tr "," "\n") if [ "$tags" == "" ]