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

15 lines
223B

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