switch kojipkg01 to varnish too

This commit is contained in:
Kevin Fenzi 2017-04-06 00:22:36 +00:00
parent 483c774e5c
commit 7437d0fa81
2 changed files with 58 additions and 59 deletions

View file

@ -30,7 +30,6 @@
nfs_src_dir: 'fedora_ftp/fedora.redhat.com/pub' nfs_src_dir: 'fedora_ftp/fedora.redhat.com/pub'
- role: kojipkgs - role: kojipkgs
- role: varnish - role: varnish
when: inventory_hostname.startswith('kojipkgs02')
tasks: tasks:
- include: "{{ tasks }}/yumrepos.yml" - include: "{{ tasks }}/yumrepos.yml"

View file

@ -1,46 +1,46 @@
# #
# This is before squid is installed on initial setup so it runs on squid install # This is before squid is installed on initial setup so it runs on squid install
# #
- name: add squid tmpfiles.d to make run dir for smp ipc sockets. #- name: add squid tmpfiles.d to make run dir for smp ipc sockets.
copy: src=squid-tmpfiles dest=/etc/tmpfiles.d/squid.conf owner=root group=root mode=644 # copy: src=squid-tmpfiles dest=/etc/tmpfiles.d/squid.conf owner=root group=root mode=644
tags: # tags:
- packages # - packages
- kojipkgs # - kojipkgs
when: inventory_hostname.startswith('kojipkgs01') # when: inventory_hostname.startswith('kojipkgs01')
- name: install squid server packages #- name: install squid server packages
package: name={{ item }} state=present # package: name={{ item }} state=present
with_items: # with_items:
- squid # - squid
- httpd # - httpd
- mod_ssl # - mod_ssl
- libsemanage-python # - libsemanage-python
tags: # tags:
- packages # - packages
- kojipkgs # - kojipkgs
when: inventory_hostname.startswith('kojipkgs01') # when: inventory_hostname.startswith('kojipkgs01')
- name: set seboolean for squid server #- name: set seboolean for squid server
seboolean: name=httpd_can_network_connect state=true persistent=true # seboolean: name=httpd_can_network_connect state=true persistent=true
tags: # tags:
- kojipkgs # - kojipkgs
when: inventory_hostname.startswith('kojipkgs01') # when: inventory_hostname.startswith('kojipkgs01')
- name: set seboolean for nfs httpd - name: set seboolean for nfs httpd
seboolean: name=httpd_use_nfs state=true persistent=true seboolean: name=httpd_use_nfs state=true persistent=true
tags: tags:
- kojipkgs - kojipkgs
- name: install squid config files #- name: install squid config files
copy: src={{ item }} dest=/etc/squid/{{ item }} owner=root group=root mode=644 # copy: src={{ item }} dest=/etc/squid/{{ item }} owner=root group=root mode=644
with_items: # with_items:
- squid.conf # - squid.conf
- cachemgr.conf # - cachemgr.conf
notify: # notify:
- restart squid # - restart squid
tags: # tags:
- kojipkgs # - kojipkgs
when: inventory_hostname.startswith('kojipkgs01') # when: inventory_hostname.startswith('kojipkgs01')
- name: install apache config files for squid - name: install apache config files for squid
copy: src={{ item }} dest=/etc/httpd/conf.d/{{ item }} owner=root group=root mode=644 copy: src={{ item }} dest=/etc/httpd/conf.d/{{ item }} owner=root group=root mode=644
@ -66,31 +66,31 @@
tags: tags:
- kojipkgs - kojipkgs
- name: Copy squid ssl cert from puppet private #- name: Copy squid ssl cert from puppet private
copy: > # copy: >
src="{{private}}/files/httpd/wildcard-2017.squid.cert" # src="{{private}}/files/httpd/wildcard-2017.squid.cert"
dest=/etc/pki/tls/certs/wildcard-2017.squid.cert # dest=/etc/pki/tls/certs/wildcard-2017.squid.cert
owner=root group=root mode=0644 # owner=root group=root mode=0644
tags: # tags:
- kojipkgs # - kojipkgs
notify: # notify:
- reload httpd # - reload httpd
when: inventory_hostname.startswith('kojipkgs01') # when: inventory_hostname.startswith('kojipkgs01')
- name: Copy squid ssl key from puppet private #- name: Copy squid ssl key from puppet private
copy: > # copy: >
src="{{private}}/files/httpd/wildcard-2017.fedoraproject.org.key" # src="{{private}}/files/httpd/wildcard-2017.fedoraproject.org.key"
dest=/etc/pki/tls/private/wildcard-2017.fedoraproject.org.key # dest=/etc/pki/tls/private/wildcard-2017.fedoraproject.org.key
owner=root group=root mode=0600 # owner=root group=root mode=0600
tags: # tags:
- kojipkgs # - kojipkgs
notify: # notify:
- reload httpd # - reload httpd
when: inventory_hostname.startswith('kojipkgs01') # when: inventory_hostname.startswith('kojipkgs01')
- name: set squid to start on boot #- name: set squid to start on boot
service: name=squid enabled=true state=running # service: name=squid enabled=true state=running
tags: # tags:
- services # - services
- kojipkgs # - kojipkgs
when: inventory_hostname.startswith('kojipkgs01') # when: inventory_hostname.startswith('kojipkgs01')