Varnish role idempotent

This commit is contained in:
Gabriel Périard-Tremblay 2016-11-15 14:48:28 -05:00 committed by Jérémy Lecour
parent 1bb4840f48
commit 3b1ed33e4b

View file

@ -12,13 +12,11 @@
copy:
src: "/lib/systemd/system/varnish.service"
dest: "/etc/systemd/system/"
force: no
- name: Modify Varnish configuration file
lineinfile:
dest: "/etc/systemd/system/varnish.service"
regexp: "^ExecStart="
line: |
ExecStart=/usr/sbin/varnishd -a 0.0.0.0:80 -T localhost:6082 -f /etc/varnish/default.vcl \
-S /etc/varnish/secret -s malloc,2G \
-p thread_pools={{ thread_pools }} -p thread_pool_add_delay=2 -p thread_pool_min=500 -p thread_pool_max=5000
line: "ExecStart=/usr/sbin/varnishd -a 0.0.0.0:80 -T localhost:6082 -f /etc/varnish/default.vcl -S /etc/varnish/secret -s malloc,2G -p thread_pools={{ thread_pools }} -p thread_pool_add_delay=2 -p thread_pool_min=500 -p thread_pool_max=5000"
notify: reload systemctl