forked from ISTI-ansible-roles/ansible-roles
Add a postgresql dependency, if the want a local db server.
This commit is contained in:
parent
440a783369
commit
29e44b27a8
|
@ -10,6 +10,7 @@ pdns_admin_opts: ''
|
|||
pdns_admin_loglevel: 'WARN'
|
||||
pdns_admin_logdir: '/var/log/pdnsadmin'
|
||||
pdns_admin_logfile: '{{ pdns_admin_logdir }}/pdnsadmin.log'
|
||||
pdns_admin_local_pgsql: False
|
||||
|
||||
pdns_admin_prereqs:
|
||||
- git
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
dependencies:
|
||||
- { role: '../../library/roles/nginx', when: pdns_admin_local_pgsql | bool }
|
||||
- role: '../../library/roles/nginx'
|
||||
- role: '../../library/roles/node_js'
|
||||
|
|
Loading…
Reference in New Issue