-
Notifications
You must be signed in to change notification settings - Fork 4
/
comanage.yml
43 lines (35 loc) · 910 Bytes
/
comanage.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
# playbook to install and configure general components of a VOPaaS machine
#
- hosts:
- portal
become_user: root
become: True
roles:
- { role: firewall, tags: firewall }
- { role: common, tags: common }
- { role: zerotier, tags: zerotier }
- { role: auth_mellon, tags: auth_mellon }
- { role: php, tags: php }
- { role: surfconext, tags: surfconext }
- { role: mysql, tags: mysql }
- { role: comanage, tags: comanage }
- { role: apache, tags: apache }
- hosts:
- ldap-server
become_user: root
become: True
roles:
- { role: ldap, tags: ldap }
- hosts:
- phpldapadmin
become_user: root
become: True
roles:
- { role: phpldapadmin, tags: phpldapadmin }
# - hosts:
# - ssh-access
# become_user: root
# become: True
# roles:
# - { role: sshd, tags: sshd }