Files
infra/playbooks/check-syntax.sh
2021-11-25 16:50:39 -08:00

7 lines
153 B
Bash
Executable File

#!/bin/sh
for f in `find -name '*.yml'`; do
echo ansible-playbook -i hosts.ini --syntax-check $f
ansible-playbook -i hosts.ini --syntax-check $f
done