Merge "Improve daisy download speed by multi-thread tool"
[releng.git] / jjb / securedlab / check-jinja2.sh
index be4d951..84907e5 100755 (executable)
@@ -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 'pod_config.yaml.j2')
 done