ansible-role-nextcloud/tasks/version.yml
2021-10-13 13:54:38 +02:00

17 lines
477 B
YAML

---
- name: "version: {{ instance.domain }}: Prüfe NC-Installation"
stat:
path: "{{ nextcloud_install_path }}/version.php"
register: nc_is_installed
changed_when: false
- name: "version: {{ instance.domain }}: Prüfe NC-Version"
shell:
cmd: php ./occ -V | awk '{print $NF}'
chdir: "{{ nextcloud_install_path }}"
become: true
become_user: "{{ instance.user }}"
register: nc_installed_version
when: nc_is_installed.stat.exists
changed_when: false