xoxys.nginx/tasks/post_tasks.yml
Robert Kaussow 3cfa354a0c
All checks were successful
continuous-integration/drone/push Build is passing
refactor: use generic ansible modules service and package
2021-06-05 15:30:41 +02:00

10 lines
172 B
YAML

---
- name: Ensure nginx service is up and running
service:
state: started
daemon_reload: yes
enabled: yes
name: nginx
become: True
become_user: root