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

Support ansible pip-installation for RHEL 8 and greater #13326

Merged
Merged
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
28 changes: 26 additions & 2 deletions plugins/provisioners/ansible/cap/guest/redhat/ansible_install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,32 @@ def self.ansible_rpm_install(machine)
def self.pip_setup(machine, pip_install_cmd = "")
rpm_package_manager = Facts::rpm_package_manager(machine)

machine.communicate.sudo("#{rpm_package_manager} -y install curl gcc libffi-devel openssl-devel python-crypto python-devel python-setuptools")
Pip::get_pip machine, pip_install_cmd
# Use other packages for RHEL > 7 and set alternatives for RHEL 8
machine.communicate.sudo """
source /etc/os-release
MAJOR=$(echo $VERSION_ID | cut -d. -f1)
if [ $MAJOR -ge 8 ]; then
#{rpm_package_manager} -y install curl gcc libffi-devel openssl-devel python3-cryptography python3-devel python3-setuptools
else
#{rpm_package_manager} -y install curl gcc libffi-devel openssl-devel python-crypto python-devel python-setuptools
fi
if [ $MAJOR -eq 8 ]; then
alternatives --set python /usr/bin/python3
fi
"""

# pip is already installed as dependency for RHEL > 7
if machine.communicate.test("test ! -f /usr/bin/pip3")
Pip::get_pip machine, pip_install_cmd
end
# Set pip-alternative for RHEL 8
machine.communicate.sudo """
source /etc/os-release
MAJOR=$(echo $VERSION_ID | cut -d. -f1)
if [ $MAJOR -eq 8 ]; then
alternatives --install /usr/bin/pip pip /usr/local/bin/pip 1
fi
"""
end

end
Expand Down