diff options
author | Kristian Lyngstol <kly@kly.no> | 2017-04-19 18:17:40 +0200 |
---|---|---|
committer | Kristian Lyngstol <kly@kly.no> | 2017-04-19 18:17:40 +0200 |
commit | 4e04c35f04c264d728587a54d0515eef0a42a44b (patch) | |
tree | 7850ac76ba7d494014ecc97d54322567ed44af5d /ansible/playbook-new.yml | |
parent | 5bd19932a886eae468fea8bcb0e30c78f1d45141 (diff) |
build/: Make room for new deployment scheme
Diffstat (limited to 'ansible/playbook-new.yml')
-rw-r--r-- | ansible/playbook-new.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ansible/playbook-new.yml b/ansible/playbook-new.yml new file mode 100644 index 0000000..7961f21 --- /dev/null +++ b/ansible/playbook-new.yml @@ -0,0 +1,21 @@ +--- +- hosts: all + roles: + - common +- hosts: postgres + become: true + roles: + - postgres +- hosts: web + become: true + roles: + - web +- hosts: ping + become: true + roles: + - ping +- hosts: snmp + become: true + roles: + - snmp + |