Difference between revisions of "OPS635 installation ansible"
(Adding current ansible installation instructions) |
m (Adding CentOS9 Instructions) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Category:OPS635]][[Category:peter.callaghan]][[Category:ansible]] | [[Category:OPS635]][[Category:peter.callaghan]][[Category:ansible]] | ||
+ | |||
+ | = Centos 9 = | ||
+ | * Install the package: | ||
+ | ** dnf install ansible-core | ||
= Centos 8 = | = Centos 8 = | ||
Line 7: | Line 11: | ||
* Enable that repo and install the package: | * Enable that repo and install the package: | ||
** yum install --enablerepo epel-playground ansible | ** yum install --enablerepo epel-playground ansible | ||
+ | |||
+ | [https://computingforgeeks.com/how-to-install-and-configure-ansible-on-rhel-8-centos-8/ External Tutorial] | ||
+ | |||
= Centos 7 = | = Centos 7 = | ||
* Ensure you have the epel-release repo | * Ensure you have the epel-release repo | ||
Line 12: | Line 19: | ||
* Add the ansible package: | * Add the ansible package: | ||
** yum install ansible | ** yum install ansible | ||
+ | |||
+ | [https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-ansible-on-centos-7 External Tutorial] |
Latest revision as of 10:07, 11 October 2022
Centos 9
- Install the package:
- dnf install ansible-core
Centos 8
- Add the ansible rpm:
- Enable that repo and install the package:
- yum install --enablerepo epel-playground ansible
Centos 7
- Ensure you have the epel-release repo
- yum install epel-release
- Add the ansible package:
- yum install ansible