From 4e9d21ec32b21c8b75ca831dfb33a55baa520f85 Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Tue, 11 Apr 2023 16:37:58 +0300 Subject: [PATCH] installation_distros: update Fedora section (#80453) --- .../installation_distros.rst | 41 +++++++++++++++---- 1 file changed, 34 insertions(+), 7 deletions(-) diff --git a/docs/docsite/rst/installation_guide/installation_distros.rst b/docs/docsite/rst/installation_guide/installation_distros.rst index 5297a3dd32a..2e0ae7d7b2e 100644 --- a/docs/docsite/rst/installation_guide/installation_distros.rst +++ b/docs/docsite/rst/installation_guide/installation_distros.rst @@ -10,23 +10,50 @@ The following instructions will guide you through installing the ``ansible`` pac .. contents:: :local: -Installing Ansible on Fedora or CentOS --------------------------------------- +Installing Ansible on Fedora Linux +------------------------------------------------- -On Fedora: +To install the batteries included ``ansible`` package on Fedora run .. code-block:: bash $ sudo dnf install ansible -On CentOS: +If you prefer to install the minimal ``ansible-core`` package run .. code-block:: bash - $ sudo yum install epel-release - $ sudo yum install ansible + $ sudo dnf install ansible-core + +Several Ansible collections are also available from the Fedora repositories as +standalone packages that users can install alongside ``ansible-core``. +For example, to install the ``community.general`` collection run + +.. code-block:: bash + + $ sudo dnf install ansible-collection-community-general + +See the `Fedora Packages index `_ +for a full list of Ansible collections packaged in Fedora. + + +Please `file a bug `_ against the +``Fedora`` product in Red Hat Bugzilla to reach the package maintainers. + +Installing Ansible from EPEL +---------------------------------- + +Users of CentOS Stream, Almalinux, Rocky Linux, and related distributions +can install ``ansible`` or Ansible collections from the community maintained +`EPEL `_ +(Extra Packages for Enterprise Linux) repository. + +After `enabling the EPEL repository `_, +users can use the same ``dnf`` commands as for Fedora Linux. + +Please `file a bug `_ against the +``Fedora EPEL`` product in Red Hat Bugzilla to reach the package maintainers. -RPMs for currently supported versions of CentOS are also available from `EPEL `_. Installing Ansible on OpenSUSE Tumbleweed/Leap ----------------------------------------------