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.
 
 
 
 

13 lines
316 B

---
- 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))
- set_fact:
occ_out: '{{ occ_out_raw.stdout | from_json }}'
when: nojson is not defined
...