Fix some conditionals so that we can skip nagios.

This commit is contained in:
Andrea Dell'Amico 2020-02-07 18:34:48 +01:00
parent e433a4eeb3
commit 172373fb5c
1 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,6 @@ dependencies:
- { role: '../../library/roles/data_disk', when: additional_disks is defined and additional_disks } - { role: '../../library/roles/data_disk', when: additional_disks is defined and additional_disks }
- role: '../../library/roles/sshd_config' - role: '../../library/roles/sshd_config'
- { role: '../library/roles/letsencrypt-acme-sh-client', when: letsencrypt_acme_sh_install is defined and letsencrypt_acme_sh_install } - { role: '../library/roles/letsencrypt-acme-sh-client', when: letsencrypt_acme_sh_install is defined and letsencrypt_acme_sh_install }
- { role: '../../library/roles/nagios', when: nagios_enabled is defined } - { role: '../../library/roles/nagios', when: nagios_enabled is defined and nagios_enabled }
- { role: '../../library/roles/prometheus-node-exporter', when: prometheus_enabled } - { role: '../../library/roles/prometheus-node-exporter', when: prometheus_enabled is defined and prometheus_enabled }