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
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