Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 6 additions & 5 deletions docs/book/v2/setup/setup-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
Install system packages:

```shell
# If install Ansible via pip: sudo dnf install epel-release dnf-utils python3-pip https://rpms.remirepo.net/enterprise/remi-release-10.rpm -y
sudo dnf install epel-release dnf-utils https://rpms.remirepo.net/enterprise/remi-release-10.rpm -y
```

Expand All @@ -30,12 +29,14 @@ Update/Upgrade system packages:
sudo dnf upgrade -y
```

Now, install the latest version of **Ansible**:
Now, install the latest version of **Ansible Core** and run **ansible-galaxy** in order to install collections:

```shell
sudo dnf install ansible -y
# If install Ansible from packages: sudo dnf install ansible-core ansible-collection-community-general -y
# If install Ansible via pip: pip install ansible
sudo dnf install ansible-core -y
```

```shell
ansible-galaxy collection install community.general community.mysql
```

Move inside your home directory (it is `/home/` followed by your AlmaLinux10 username, for example: `/home/dotkernel`):
Expand Down
11 changes: 6 additions & 5 deletions wsl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ passwd: all authentication tokens updated successfully.
Install system packages:

```shell
# If install Ansible via pip: sudo dnf install epel-release dnf-utils python3-pip https://rpms.remirepo.net/enterprise/remi-release-10.rpm -y
sudo dnf install epel-release dnf-utils https://rpms.remirepo.net/enterprise/remi-release-10.rpm -y
```

Expand All @@ -113,12 +112,14 @@ Update/Upgrade system packages:
sudo dnf upgrade -y
```

Now, install the latest version of **Ansible**:
Now, install the latest version of **Ansible Core** and run **ansible-galaxy** in order to install collections:

```shell
sudo dnf install ansible -y
# If install Ansible from packages: sudo dnf install ansible-core ansible-collection-community-general -y
# If install Ansible via pip: pip install ansible
sudo dnf install ansible-core -y
```

```shell
ansible-galaxy collection install community.general community.mysql
```

Move inside your home directory (it is `/home/` followed by your AlmaLinux10 username, for example: `/home/dotkernel`):
Expand Down