Playbooks to a new Lilik
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.

8 lines
279 B

  1. ---
  2. - name: install nginx
  3. apt: pkg=nginx state=latest
  4. - name: start nginx at boot
  5. service: name=nginx state=started enabled=yes
  6. # - name: copy nginx configuration
  7. # template: src={{ configuration_file }} dest=/etc/nginx/sites-available/{{ dest }}
  8. # notify: restart nginx