1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Update enable_services.yml

This commit is contained in:
A Holt 2018-07-12 14:04:52 -04:00 committed by GitHub
parent 14678e8121
commit eb1f6a5dcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,16 +100,16 @@
mode: "{{ item.mode }}" mode: "{{ item.mode }}"
with_items: with_items:
- src: squid/squid-iiab.conf.j2 - src: squid/squid-iiab.conf.j2
dest: '/etc/{{ proxy }}/squid-iiab.conf' dest: "/etc/{{ proxy }}/squid-iiab.conf"
owner: '{{ proxy_user }}' owner: "{{ proxy_user }}"
group: '{{ proxy_user }}' group: "{{ proxy_user }}"
mode: 0644 mode: 0644
when: squid_enabled and squid_install when: squid_enabled and squid_install
- name: Point to Squid config file from startup file - name: Point to Squid config file from startup file
lineinfile: lineinfile:
regexp: '^CONFIG' regexp: '^CONFIG'
line: 'CONFIG=/etc/{{ proxy }}/squid-iiab.conf' line: "CONFIG=/etc/{{ proxy }}/squid-iiab.conf"
dest: "/etc/init.d/{{ proxy }}" dest: "/etc/init.d/{{ proxy }}"
when: squid_enabled and squid_install and is_debuntu when: squid_enabled and squid_install and is_debuntu