diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2024-10-19 21:52:46 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2024-10-19 21:52:46 +0200 |
commit | cb31aed3f469987b7993033228641761fad2e0f9 (patch) | |
tree | 97a087d04f2b90f0e958d24be3ade820a93d2a89 /tasks | |
parent | 6deb648540d44ca7dd91217307bd7bcd08300b2b (diff) |
Also import and publish custom layers.
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/webmap.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tasks/webmap.yml b/tasks/webmap.yml index d4aca82..5f82d7f 100644 --- a/tasks/webmap.yml +++ b/tasks/webmap.yml @@ -131,7 +131,11 @@ - name: Enable webmap-download@.service service: name=webmap-download@{{ item }}.service enabled=true - with_items: "{{ webmap_layer_groups }}" + with_items: "{{ webmap_layer_groups | difference(webmap_layer_groups_nodownload) }}" + +- name: Disable some webmap-download@.service + service: name=webmap-download@{{ item }}.service enabled=false + with_items: "{{ webmap_layer_groups_nodownload }}" - meta: flush_handlers |