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'
- role: kojipkgs
- role: varnish
when: inventory_hostname.startswith('kojipkgs02')
tasks:
- 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
#
- 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
tags:
- packages
- kojipkgs
when: inventory_hostname.startswith('kojipkgs01')
#- 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
# tags:
# - packages
# - kojipkgs
# when: inventory_hostname.startswith('kojipkgs01')
- name: install squid server packages
package: name={{ item }} state=present
with_items:
- squid
- httpd
- mod_ssl
- libsemanage-python
tags:
- packages
- kojipkgs
when: inventory_hostname.startswith('kojipkgs01')
#- name: install squid server packages
# package: name={{ item }} state=present
# with_items:
# - squid
# - httpd
# - mod_ssl
# - libsemanage-python
# tags:
# - packages
# - kojipkgs
# when: inventory_hostname.startswith('kojipkgs01')
- name: set seboolean for squid server
seboolean: name=httpd_can_network_connect state=true persistent=true
tags:
- kojipkgs
when: inventory_hostname.startswith('kojipkgs01')
#- name: set seboolean for squid server
# seboolean: name=httpd_can_network_connect state=true persistent=true
# tags:
# - kojipkgs
# when: inventory_hostname.startswith('kojipkgs01')
- name: set seboolean for nfs httpd
seboolean: name=httpd_use_nfs state=true persistent=true
tags:
- kojipkgs
- name: install squid config files
copy: src={{ item }} dest=/etc/squid/{{ item }} owner=root group=root mode=644
with_items:
- squid.conf
- cachemgr.conf
notify:
- restart squid
tags:
- kojipkgs
when: inventory_hostname.startswith('kojipkgs01')
#- name: install squid config files
# copy: src={{ item }} dest=/etc/squid/{{ item }} owner=root group=root mode=644
# with_items:
# - squid.conf
# - cachemgr.conf
# notify:
# - restart squid
# tags:
# - kojipkgs
# when: inventory_hostname.startswith('kojipkgs01')
- name: install apache config files for squid
copy: src={{ item }} dest=/etc/httpd/conf.d/{{ item }} owner=root group=root mode=644
@ -66,31 +66,31 @@
tags:
- kojipkgs
- name: Copy squid ssl cert from puppet private
copy: >
src="{{private}}/files/httpd/wildcard-2017.squid.cert"
dest=/etc/pki/tls/certs/wildcard-2017.squid.cert
owner=root group=root mode=0644
tags:
- kojipkgs
notify:
- reload httpd
when: inventory_hostname.startswith('kojipkgs01')
#- name: Copy squid ssl cert from puppet private
# copy: >
# src="{{private}}/files/httpd/wildcard-2017.squid.cert"
# dest=/etc/pki/tls/certs/wildcard-2017.squid.cert
# owner=root group=root mode=0644
# tags:
# - kojipkgs
# notify:
# - reload httpd
# when: inventory_hostname.startswith('kojipkgs01')
- name: Copy squid ssl key from puppet private
copy: >
src="{{private}}/files/httpd/wildcard-2017.fedoraproject.org.key"
dest=/etc/pki/tls/private/wildcard-2017.fedoraproject.org.key
owner=root group=root mode=0600
tags:
- kojipkgs
notify:
- reload httpd
when: inventory_hostname.startswith('kojipkgs01')
#- name: Copy squid ssl key from puppet private
# copy: >
# src="{{private}}/files/httpd/wildcard-2017.fedoraproject.org.key"
# dest=/etc/pki/tls/private/wildcard-2017.fedoraproject.org.key
# owner=root group=root mode=0600
# tags:
# - kojipkgs
# notify:
# - reload httpd
# when: inventory_hostname.startswith('kojipkgs01')
- name: set squid to start on boot
service: name=squid enabled=true state=running
tags:
- services
- kojipkgs
when: inventory_hostname.startswith('kojipkgs01')
#- name: set squid to start on boot
# service: name=squid enabled=true state=running
# tags:
# - services
# - kojipkgs
# when: inventory_hostname.startswith('kojipkgs01')