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

Added note for Ansible - CentOS8 installation #6341

Merged
merged 4 commits into from
Aug 15, 2023
Merged
Changes from 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The following minimum requirements should be met to use Ansible on Windows endpo
Installation on CentOS/RHEL/Fedora
----------------------------------

Installation is done using yum from `EPEL <http://fedoraproject.org/wiki/EPEL>`_. Only CentOS/RedHat version 6 or 7, and Fedora distributions, are currently supported. The steps are as follows:
Installation is done using yum from `EPEL <http://fedoraproject.org/wiki/EPEL>`_. Only CentOS/RedHat version 6, 7 or 8, and Fedora distributions, are currently supported. The steps are as follows:

#. Install the EPEL repository:

Expand All @@ -51,6 +51,16 @@ Installation is done using yum from `EPEL <http://fedoraproject.org/wiki/EPEL>`_
.. code-block:: console

# yum install ansible

.. note::
:class: not-long

If the system is CentOS 8, run the following commands:

.. code-block:: console

# pip3 install --upgrade --ignore-installed pip setuptools --user
# python3 -m pip install --user ansible

Installation on Debian/Ubuntu
-----------------------------
Expand Down