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.

19 lines
285B

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