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.

15 line
226B

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