2022-09-06 08:19:54 -04:00
|
|
|
#! /bin/sh
|
2014-01-24 16:59:46 +00:00
|
|
|
|
2022-09-06 08:19:54 -04:00
|
|
|
rootpath="/srv/web/infra/ansible/playbooks"
|
|
|
|
parallel=8 # limit since ansible-playbook takes O(1GB) RAM each on batcave
|
2014-01-24 16:59:46 +00:00
|
|
|
|
2022-09-06 08:19:54 -04:00
|
|
|
find $rootpath/hosts $rootpath/groups -type f -name '*.yml' |
|
|
|
|
xargs -I'{}' -P $parallel ansible-playbook '{}' --check --diff
|