-
Notifications
You must be signed in to change notification settings - Fork 4
Update documentation #68
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
Changes from 7 commits
24e3df2
bce3a8a
2da344b
75a9e1d
09c7f81
1d113a2
7c3c7e4
eb38d89
22ad641
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 | ||
| ``` | ||
|
|
||
|
|
@@ -30,12 +29,18 @@ 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 | ||
| ``` | ||
|
|
||
| ```shell | ||
| ansible-galaxy collection install community.mysql | ||
| ``` | ||
|
|
||
|
Comment on lines
+36
to
41
|
||
| Move inside your home directory (it is `/home/` followed by your AlmaLinux10 username, for example: `/home/dotkernel`): | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -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 | ||||||||||||||||
| ``` | ||||||||||||||||
|
|
||||||||||||||||
|
|
@@ -113,12 +112,18 @@ 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 | ||||||||||||||||
| ``` | ||||||||||||||||
|
|
||||||||||||||||
| ```shell | ||||||||||||||||
|
||||||||||||||||
| ansible-galaxy collection install community.mysql | ||||||||||||||||
| ``` | ||||||||||||||||
|
|
||||||||||||||||
|
||||||||||||||||
| ansible-galaxy collection install community.general | |
| ``` | |
| ```shell | |
| ansible-galaxy collection install community.mysql | |
| ``` | |
| ansible-galaxy collection install community.general community.mysql |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Consider combining multiple
ansible-galaxy collection installcommands into a single invocation (e.g.ansible-galaxy collection install community.general community.mysql) to streamline setup.