From 9cafdd4bc86a851dcf5d3b90777cb46535069b29 Mon Sep 17 00:00:00 2001 From: phil Date: Mon, 23 Oct 2023 07:50:48 +0200 Subject: [PATCH] Nextcloud: Re-enable configuration rollout --- tasks/configuration.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tasks/configuration.yml b/tasks/configuration.yml index 47c8719..2e1e81f 100644 --- a/tasks/configuration.yml +++ b/tasks/configuration.yml @@ -25,10 +25,10 @@ dest: "/tmp/{{ instances.name }}_config.json" mode: "0644" -# - name: "Configuration | Importiere Konfiguration | {{ instances.name }}" -# ansible.builtin.command: -# cmd: "php occ config:import /tmp/{{ instances.name }}_config.json --quiet" -# chdir: "{{ nextcloud_install_path }}" -# become: true -# become_user: "{{ instances.user }}" -# changed_when: true +- name: "Configuration | Importiere Konfiguration | {{ instances.name }}" + ansible.builtin.command: + cmd: "php occ config:import /tmp/{{ instances.name }}_config.json --quiet" + chdir: "{{ nextcloud_install_path }}" + become: true + become_user: "{{ instances.user }}" + changed_when: true