Sfoglia il codice sorgente

Fix incorrectly named module arguments (ansible.builtin.group -> group)

Regression since the mass-replace in 34cdaade0.

Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2054
pull/2061/head
Slavi Pantaleev 3 anni fa
parent
commit
b196e15796
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +1
    -1
      roles/matrix-client-element/tasks/setup_install.yml
  2. +1
    -1
      roles/matrix-synapse/tasks/import_media_store.yml

+ 1
- 1
roles/matrix-client-element/tasks/setup_install.yml Vedi File

@@ -45,7 +45,7 @@
line: '\1splitChunks: { maxSize: 100000,' line: '\1splitChunks: { maxSize: 100000,'
backrefs: true backrefs: true
owner: root owner: root
ansible.builtin.group: root
group: root
mode: '0644' mode: '0644'
when: "matrix_client_element_container_image_self_build | bool and matrix_client_element_container_image_self_build_low_memory_system_patch_enabled | bool" when: "matrix_client_element_container_image_self_build | bool and matrix_client_element_container_image_self_build_low_memory_system_patch_enabled | bool"




+ 1
- 1
roles/matrix-synapse/tasks/import_media_store.yml Vedi File

@@ -57,7 +57,7 @@
delete: true delete: true
# It's wasteful to preserve owner/group now. We chown below anyway. # It's wasteful to preserve owner/group now. We chown below anyway.
owner: false owner: false
ansible.builtin.group: false
group: false
times: true times: true
delegate_to: "{{ inventory_hostname }}" delegate_to: "{{ inventory_hostname }}"




Caricamento…
Annulla
Salva