From d42a14941c002c355eb3ddd146e82750c4e6bc83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1nos=20Veres?= Date: Sun, 2 Jun 2019 10:07:58 +0200 Subject: [PATCH] Minor fixes Fix ansible version if the script is re-run multiple times Fix for https://github.com/gshipley/installcentos/issues/125 via hosts file --- install-openshift.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install-openshift.sh b/install-openshift.sh index af61833d..dd0b8868 100755 --- a/install-openshift.sh +++ b/install-openshift.sh @@ -108,6 +108,9 @@ fi # install the packages for Ansible yum -y --enablerepo=epel install pyOpenSSL +# if the script is running for the second time, `yum -y update` will bump ansible to the latest version +yum remove -y ansible + curl -o ansible.rpm https://releases.ansible.com/ansible/rpm/release/epel-7-x86_64/ansible-2.6.5-1.el7.ans.noarch.rpm yum -y --enablerepo=epel install ansible.rpm @@ -116,7 +119,7 @@ yum -y --enablerepo=epel install ansible.rpm cat < /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 -${IP} $(hostname) console console.${DOMAIN} +${IP} $(hostname) console console.${DOMAIN} console-internal.${DOMAIN} EOD if [ -z $DISK ]; then