8 lines
156 B
Plaintext
8 lines
156 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# pre-commit hook to use ansible-lint to check our playbooks.
|
||
|
|
||
|
for file in `find ../playbooks/ -type f`; do
|
||
|
ansible-lint "$file"
|
||
|
done
|