forked from FreiFunkMuenster/ansible-ffms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdienste.yml
16 lines (16 loc) · 1.09 KB
/
dienste.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- hosts: dienste
vars_files:
- passwords.yml
remote_user: root
roles:
- { role: hostname, tags: "hostname"}
- { role: common, tags: "common"}
- { role: motd, tags: "motd"}
- { role: dienste_lamp, tags: "dienste_lamp", when: "'install_lamp' in hostvars[inventory_hostname] and install_lamp == true"}
- { role: dienste_osticket, tags: "dienste_osticket", when: "'install_osticket' in hostvars[inventory_hostname] and install_osticket == true"}
- { role: dienste_bind, tags: "dienste_bind", when: "'install_dnsmaster' in hostvars[inventory_hostname] and install_dnsmaster == true"}
- { role: dienste_gitolite, tags: "dienste_gitolite", when: "'install_gitolite' in hostvars[inventory_hostname] and install_gitolite == true"}
- { role: dienste_mumble, tags: "dienste_mumble", when: "'install_mumble' in hostvars[inventory_hostname] and install_mumble == true"}
- { role: dienste_passbolt, tags: "dienste_passbolt", when: "'install_passbolt' in hostvars[inventory_hostname] and install_passbolt == true"}
- { role: unattended_upgrades, tags: "unattended_upgrades"}