nginx/server: Fix warnings on non OpenBSD hosts

This commit is contained in:
Timo Makinen 2022-12-13 20:29:37 +00:00
parent 0cda29bd26
commit d25e7f51e9

View file

@ -116,6 +116,6 @@
- name: Enable nginx service
ansible.builtin.service:
name: nginx
arguments: -u
arguments: "{% if ansible_system == 'OpenBSD' %}-u{% endif %}"
state: started
enabled: true