034f37c32a
Instead of a shell script looping over ssh calls, use a simple ansible playbook. The benefit this gets is that we can then also script ad-hoc admin tasks either via playbooks or on the command line. We can also then get rid of the almost entirely unused salt infrastructure. Change-Id: I53112bd1f61d94c0521a32016c8a47c8cf9e50f7
15 lines
246 B
YAML
15 lines
246 B
YAML
---
|
|
- hosts: git0*
|
|
gather_facts: false
|
|
max_fail_percentage: 1
|
|
roles:
|
|
- puppet
|
|
- hosts: review.openstack.org
|
|
gather_facts: false
|
|
roles:
|
|
- puppet
|
|
- hosts: "!review.openstack.org:!git0*"
|
|
gather_facts: false
|
|
roles:
|
|
- puppet
|