projects
/
ansible.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
journalwatch: allow more TLS errors
[ansible.git]
/
all
1
#!/bin/bash
2
set -e
3
4
for HOST in $(fgrep 'all:' hosts | sed 's/.*all: *//g'); do
5
echo "Running on $HOST"
6
ansible "$HOST" "$@"
7
echo
8
done