Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
369 B

---
- name: 'exec occ command'
command: 'php occ {{ occ_args }}'
become: true
become_user: 'www-data'
args:
chdir: '/opt/nextcloud'
register: occ_out_raw
changed_when: occ_out_raw.changed and (not ignore_changes|default(false))
- name: 'read occ output'
set_fact:
occ_out: '{{ occ_out_raw.stdout | from_json }}'
when: nojson is not defined
...