--- - name: "Common | Ermittle aktuelle Nextcloud-Version" ansible.builtin.shell: cmd: curl -sL "{{ nextcloud_github_api_url }}" | jq -r ".tag_name" | cut -d 'v' -f2 changed_when: false check_mode: false register: nextcloud_latest_version - name: "Common | Kopiere Update-Skript" ansible.builtin.template: src: nextcloud-updater.j2 dest: "/usr/local/bin/nextcloud-updater" mode: "0755" - name: "Common | Kopiere 0-byte-check-script" ansible.builtin.template: src: local_nextcloud_zero_bytes.j2 dest: /etc/cron.hourly/local_nextcloud_zero_bytes mode: "0755"