From: agardner Date: Thu, 4 May 2017 15:54:36 +0000 (-0400) Subject: fixed syntax errors in zte pods, change labconfig name X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F83%2F34283%2F1;p=releng.git fixed syntax errors in zte pods, change labconfig name Change-Id: I2d0e6c1199fe3ac2841923abdabd19c239b2b5f8 Signed-off-by: agardner --- diff --git a/jjb/securedlab/check-jinja2.sh b/jjb/securedlab/check-jinja2.sh index be4d951ed..1ad9ef27d 100755 --- a/jjb/securedlab/check-jinja2.sh +++ b/jjb/securedlab/check-jinja2.sh @@ -1,9 +1,9 @@ #!/bin/bash set +x set -o errexit -for lab_configs in $(find labs/ -name 'pod.yaml' | grep -v zte); do +for lab_configs in $(find labs/ -name 'pod.yaml'); do while IFS= read -r jinja_templates; do echo "./utils/generate_config.py -y $lab_configs -j $jinja_templates" ./utils/generate_config.py -y $lab_configs -j $jinja_templates - done < <(find installers/ -name '*.jinja2') + done < <(find installers/ -name 'labconfig.yaml') done