ansible-labs/040.Handlers/solution/tasks/restart_nginx.yml

7 lines
112 B
YAML
Raw Normal View History

2018-08-01 12:12:26 +02:00
- name: Restart Nginx
become: true
sysvinit:
name: nginx
state: started
# vim: set ft=yaml sw=2 et: