Difference between revisions of "Ansible"

From PKC
Jump to navigation Jump to search
Line 1: Line 1:
[https://www.ansible.com Ansible] is an automation tool for IT professionals for managing software in a network environment, particularly designed to apply repetitive changes to a large number of machines.
[https://www.ansible.com Ansible] is an automation tool for IT professionals for managing software in a network environment, particularly designed to apply repetitive changes to a large number of machines.
=Installation for Ubuntu=
This is the [https://docs.ansible.com/ansible_community.html community documentation landing page] for Ansible.
==Ubuntu Installation==
The original documentation on Ansible's Ubuntu installation can be found [https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#installing-ansible-on-ubuntu here]:
The actual installation commands are:
sudo apt update
sudo apt install software-properties-common
sudo add-apt-repository --yes --update ppa:ansible/ansible
sudo apt install ansible


<noinclude>
<noinclude>
[[Category:Ansible]]
[[Category:Ansible]]
</noinclude>
</noinclude>

Revision as of 14:03, 21 July 2021

Ansible is an automation tool for IT professionals for managing software in a network environment, particularly designed to apply repetitive changes to a large number of machines.

Installation for Ubuntu

This is the community documentation landing page for Ansible.

Ubuntu Installation

The original documentation on Ansible's Ubuntu installation can be found here: The actual installation commands are:

sudo apt update
sudo apt install software-properties-common
sudo add-apt-repository --yes --update ppa:ansible/ansible
sudo apt install ansible