Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes #165

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion install-openshift.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -116,7 +119,7 @@ yum -y --enablerepo=epel install ansible.rpm
cat <<EOD > /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
Expand Down