๐Ÿ“ฆ simono / ansible-examples

๐Ÿ“„ web.yml ยท 9 lines
1
2
3
4
5
6
7
8
9# web.yml
---
- hosts: web
  tasks:
    - name: Install nginx
      apt: name=nginx state=latest
    - name: Ensure nginx is started
      service: name=nginx state=started