25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
198B

  1. ---
  2. - name: install apt packages
  3. apt:
  4. pkg: "{{item}}"
  5. state: present
  6. with_items:
  7. - apache2
  8. - name: remove default page
  9. file:
  10. path: /var/www/html/index.html
  11. state: absent