diff options
author | binary <me@rgoncalves.se> | 2021-01-22 21:36:58 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-01-22 21:36:58 +0100 |
commit | 079cdda94993b0c627d72213f1642f1836e5371a (patch) | |
tree | 44536bbce3f7d5e5f455b9681482832a3209cb81 | |
parent | c7a1a46dd0ffc4cff3fab8ca19a3d68f75268cf2 (diff) | |
download | infrastructure-079cdda94993b0c627d72213f1642f1836e5371a.tar.gz |
Add tags to st0cld0 playbook
-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" |