From 9377677a9b06f01a6f4b3c4298d2424997b4070c Mon Sep 17 00:00:00 2001 From: agardner Date: Thu, 4 May 2017 11:54:36 -0400 Subject: fixed syntax errors in zte pods, change labconfig name Change-Id: I2d0e6c1199fe3ac2841923abdabd19c239b2b5f8 Signed-off-by: agardner --- jjb/securedlab/check-jinja2.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'jjb/securedlab') 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 -- cgit 1.2.3-korg