File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed
Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 33Install system packages:
44
55``` shell
6- # If install Ansible via pip: sudo dnf install epel-release dnf-utils python3-pip https://rpms.remirepo.net/enterprise/remi-release-10.rpm -y
76sudo dnf install epel-release dnf-utils https://rpms.remirepo.net/enterprise/remi-release-10.rpm -y
87```
98
@@ -30,12 +29,18 @@ Update/Upgrade system packages:
3029sudo dnf upgrade -y
3130```
3231
33- Now, install the latest version of ** Ansible** :
32+ Now, install the latest version of ** Ansible core and ansible-galaxy ** :
3433
3534``` shell
36- sudo dnf install ansible -y
37- # If install Ansible from packages: sudo dnf install ansible-core ansible-collection-community-general -y
38- # If install Ansible via pip: pip install ansible
35+ sudo dnf install ansible-core -y
36+ ```
37+
38+ ``` shell
39+ ansible-galaxy collection install community.general
40+ ```
41+
42+ ``` shell
43+ ansible-galaxy collection install community.mysql
3944```
4045
4146Move inside your home directory (it is ` /home/ ` followed by your AlmaLinux10 username, for example: ` /home/dotkernel ` ):
You can’t perform that action at this time.
0 commit comments