diff --git a/roles/network/tasks/squid.yml b/roles/network/tasks/squid.yml index faeaf66e6..6b71e882c 100644 --- a/roles/network/tasks/squid.yml +++ b/roles/network/tasks/squid.yml @@ -1,4 +1,4 @@ -- name: 'Install packages: {{ proxy }} and cadaver' +- name: "Install 2 packages: {{ proxy }}, cadaver" package: name: - "{{ proxy }}" @@ -7,7 +7,7 @@ tags: - download -- name: 'Bigger hammer for Ubuntu, run: /etc/init.d/squid stop' +- name: "Bigger hammer for Ubuntu, run: /etc/init.d/squid stop" command: /etc/init.d/squid stop when: is_ubuntu @@ -17,13 +17,13 @@ state: stopped when: not installing -- name: 'Create the Squid user: {{ proxy_user }}' +- name: "Create the Squid user: {{ proxy_user }}" user: name: "{{ proxy_user }}" createhome: False shell: /bin/false -- name: 'Install from template: /usr/bin/iiab-httpcache, /etc/sysconfig/squid, /etc/{{ proxy }}/sites.whitelist.txt and 3 .rules files' +- name: "Install from template: /usr/bin/iiab-httpcache, /etc/sysconfig/squid, /etc/{{ proxy }}/sites.whitelist.txt and 3 .rules files" template: src: "{{ item.src }}" dest: "{{ item.dest }}"