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

  1. ---
  2. - command: 'php occ {{ occ_args }}'
  3. become: true
  4. become_user: 'www-data'
  5. args:
  6. chdir: '/opt/nextcloud'
  7. register: occ_out_raw
  8. changed_when: occ_out_raw.changed and (not ignore_changes|default(false))
  9. - set_fact:
  10. occ_out: '{{ occ_out_raw.stdout | from_json }}'
  11. when: nojson is not defined
  12. ...