feat: allow zoneminder's apache config to contain the FQDN

This commit is contained in:
anon8675309 2023-06-30 14:17:41 -05:00
parent 51ce9d82a6
commit ba97fe4dce
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@
when: site.state == 'present' when: site.state == 'present'
vars: vars:
site: "{{ defaults_site | combine(site_item.value, recursive=true) }}" site: "{{ defaults_site | combine(site_item.value, recursive=true) }}"
name: "{{ site_item.key | safe_key }}" name: "{{ site_item.value.name | default(site_item.key) }}"
path: "{{ site.serve.path }}" path: "{{ site.serve.path }}"
loop_control: loop_control:
loop_var: site_item loop_var: site_item