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.

7 年之前
1234567891011121314151617181920212223242526
  1. ---
  2. - name: nextcloud directory access
  3. file:
  4. path: /var/www/nextcloud/{{item}}
  5. state: directory
  6. owner: www-data
  7. group: www-data
  8. recurse: yes
  9. with_items:
  10. - data
  11. - config
  12. - name: nextcloud htaccess file access
  13. file:
  14. path: /var/www/nextcloud/.htaccess
  15. state: file
  16. owner: www-data
  17. group: www-data
  18. - name: nextcloud log directory
  19. file:
  20. path: /var/log/nextcloud
  21. state: directory
  22. owner: www-data
  23. group: www-data