From cb31aed3f469987b7993033228641761fad2e0f9 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sat, 19 Oct 2024 21:52:46 +0200 Subject: Also import and publish custom layers. --- group_vars/all.yml | 4 ++++ tasks/webmap.yml | 6 +++++- webmap-tools | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/group_vars/all.yml b/group_vars/all.yml index 0b3227d..e90c73e 100644 --- a/group_vars/all.yml +++ b/group_vars/all.yml @@ -9,6 +9,10 @@ webmap_layer_groups: - vbk - ri - svk + - misc + +webmap_layer_groups_nodownload: + - misc # PostgreSQL's version number and cluster name postgresql: 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 diff --git a/webmap-tools b/webmap-tools index 4f56801..eaa3213 160000 --- a/webmap-tools +++ b/webmap-tools @@ -1 +1 @@ -Subproject commit 4f56801e9737e1f9201ea5e2d1f23f759d65d437 +Subproject commit eaa32133e3f28026ca0a56e53f95decf15bf0a51 -- cgit v1.2.3