15 lines
194 B
YAML
15 lines
194 B
YAML
---
|
|
|
|
- name: Restart
|
|
systemd:
|
|
name: nginx
|
|
state: restarted
|
|
|
|
- name: Waitfor
|
|
wait_for:
|
|
host: localhost
|
|
port: 80
|
|
state: started
|
|
sleep: 1
|
|
delay: 2
|
|
timeout: 300
|