diff options
author | Steven Pisarski <s.pisarski@cablelabs.com> | 2017-08-11 14:47:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-11 14:47:56 +0000 |
commit | 9c023d8d1c85650b33e6375d58cd1b45c8d0d395 (patch) | |
tree | cf5c4bf0f43115f91f9073a6e9c310555426ef3a /ci/setup_proxy.yaml | |
parent | 887c0c9010e8b23bf7c955c0809c1b761ddf2096 (diff) | |
parent | dc6d1cf2c179220226bda7fd2475c74693063a75 (diff) |
Merge "Scripts to allow Jenkins to run the SNAPS-OO tests."
Diffstat (limited to 'ci/setup_proxy.yaml')
-rw-r--r-- | ci/setup_proxy.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ci/setup_proxy.yaml b/ci/setup_proxy.yaml new file mode 100644 index 0000000..996218a --- /dev/null +++ b/ci/setup_proxy.yaml @@ -0,0 +1,17 @@ +--- +- hosts: all + user: root + + tasks: + - yum: name=squid + when: ansible_distribution == "CentOS" + - apt: name=squid + when: ansible_distribution == "Ubuntu" + + - name: Transfer squid.conf + copy: src=squid.conf dest=/etc/squid/squid.conf mode=0640 + + - name: Bounce Squid + systemd: + name: squid + state: reloaded |