diff options
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/st0cld0.rgoncalves.se.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/playbooks/st0cld0.rgoncalves.se.yml b/playbooks/st0cld0.rgoncalves.se.yml index 7f4f638..fb28ff4 100644 --- a/playbooks/st0cld0.rgoncalves.se.yml +++ b/playbooks/st0cld0.rgoncalves.se.yml @@ -7,9 +7,12 @@ - hosts: st0cld0 roles: # common - - { role: grafana } - - { role: kibana } - - { role: nextcloud } + - { role: grafana, tags: "role_grafana" } + - { role: kibana, tags: "role_kibana" } + - { role: nextcloud, tags: "role_nextcloud" } +# openbsd only + - role: httpd + when: ansible_distribution == "OpenBSD" # linux only - role: nginx when: ansible_distribution != "OpenBSD" |