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

7 年前
7 年前
7 年前
1234567891011121314151617
  1. ---
  2. - name: debian packages
  3. apt:
  4. pkg:
  5. - apache2
  6. - ssl-cert
  7. - name: remove default page
  8. file:
  9. path: /var/www/html/index.html
  10. state: absent
  11. - name: make sure default directory exists
  12. file:
  13. path: /var/www/default/
  14. state: directory