6 lines
168 B
Bash
Executable file
6 lines
168 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd "$(dirname "$0")/.." || exit 1
|
|
|
|
find . -name "*.yml" -not -path "./playbooks/roles/*" -print0 | \
|
|
xargs -0 -t -n 1 -- ansible-lint -x meta-no-info --
|