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

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