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.

18 lines
417B

  1. ---
  2. - name: copy old config file
  3. copy:
  4. src: "{{nextcloud_backup_directory}}/{{_nextcloud_actual_version}}/nextcloud/config/config.php"
  5. remote_src: true
  6. dest: "{{nextcloud_directory}}/config/config.php"
  7. owner: www-data
  8. group: www-data
  9. - name: upgrade nextcloud
  10. command: php occ upgrade
  11. args:
  12. chdir: "{{nextcloud_directory}}"
  13. become: true
  14. become_user: www-data
  15. become_method: sudo