projects
/
ansible.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b4abf6b3be257100117e8176abafb72c20727650
[ansible.git]
/
playall
1
#!/bin/bash
2
set -e
3
4
for HOST in $(fgrep 'all:' hosts | sed 's/.*all: *//g'); do
5
echo "Playing on $HOST"
6
ansible-playbook --diff -l "$HOST" "$@"
7
echo
8
done