Skip to content

Commit 9d0ae7f

Browse files
committed
fix(setup-nginx): when using argv we don't need Bash line continuation chars
1 parent 09552f4 commit 9d0ae7f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ansible/tasks/setup-nginx.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
- name: nginx - configure
2828
ansible.builtin.command:
2929
argv:
30-
- ./configure \
31-
- --prefix=/usr/local/nginx \
32-
- --conf-path=/etc/nginx/nginx.conf \
33-
- --with-http_ssl_module \
34-
- --with-http_realip_module \
30+
- ./configure
31+
- --prefix=/usr/local/nginx
32+
- --conf-path=/etc/nginx/nginx.conf
33+
- --with-http_ssl_module
34+
- --with-http_realip_module
3535
- --with-threads
3636
args:
3737
chdir: "/tmp/nginx-{{ nginx_release }}"

0 commit comments

Comments
 (0)