diff options
author | Tim Smith <tsmith@chef.io> | 2021-10-08 16:14:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-08 16:14:09 -0700 |
commit | 6f1cc164575e366ce1e11806b1b2a5c54767e0d7 (patch) | |
tree | 5acb2dfcf7dac13c50e86d78040c85f8295e4be3 | |
parent | 8e9c1022bf79fd2641fafb0d64c7668a45c1673e (diff) | |
parent | 1cd1d563a7b3680f6d6644eeff09064367bdabf6 (diff) | |
download | chef-6f1cc164575e366ce1e11806b1b2a5c54767e0d7.tar.gz |
Merge pull request #12155 from chef/bring_back_6
Skip ssl verification in our centos-6 test
-rw-r--r-- | kitchen-tests/kitchen.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kitchen-tests/kitchen.yml b/kitchen-tests/kitchen.yml index d2ec39f01d..beb92d12cb 100644 --- a/kitchen-tests/kitchen.yml +++ b/kitchen-tests/kitchen.yml @@ -74,7 +74,7 @@ platforms: pid_one_command: /sbin/init intermediate_instructions: - RUN sed -i -e "s/Defaults.*requiretty.*/Defaults !requiretty/g" /etc/sudoers - - RUN wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo https://www.centos.org/keys/RPM-GPG-KEY-CentOS-SIG-SCLo + - RUN wget --no-check-certificate -O /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo https://www.centos.org/keys/RPM-GPG-KEY-CentOS-SIG-SCLo - RUN printf "[centos-sclo-rh]\nname=CentOS-6 - SCLo rh\nbaseurl=http://vault.centos.org/centos/6/sclo/x86_64/rh\ngpgcheck=1\nenabled=1\ngpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo" > /etc/yum.repos.d/CentOS-SCLo-rh.repo - RUN yum install -y devtoolset-8 |