您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718
  1. ---
  2. - name: delete nextcloud directory
  3. file:
  4. path: /var/www/nextcloud
  5. state: absent
  6. - name: drop mysql database
  7. mysql_db:
  8. name: "{{nextcloud_database_name}}"
  9. state: absent
  10. delegate_to: "{{ nextcloud_database_host }}"
  11. when: nextcloud_database_type == "mysql"
  12. - name: delete nextcloud log
  13. file:
  14. path: /var/log/nextcloud/nextcloud.log
  15. state: absent