Merge pull request #750 from shaderecker/patch-2

Update Ansible Docu
This commit is contained in:
Marco Ochse 2021-01-14 09:43:29 +01:00 committed by GitHub
commit df27ba4e5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,6 +36,8 @@ Ansible works over the SSH Port, so you don't have to add any special rules to y
<a name="ansible"></a> <a name="ansible"></a>
## Ansible Installation ## Ansible Installation
:warning: Ansible 2.10 or newer is required!
Example for Ubuntu 18.04: Example for Ubuntu 18.04:
At first we update the system: At first we update the system:
@ -48,6 +50,12 @@ Then we need to add the repository and install Ansible:
For other OSes and Distros have a look at the official [Ansible Documentation](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html). For other OSes and Distros have a look at the official [Ansible Documentation](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html).
If your OS does not offer a recent version of Ansible (>= 2.10) you should consider [installing Ansible with pip](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#installing-ansible-with-pip).
In short (if you already have Python3/pip3 installed):
```
pip3 install ansible
```
<a name="agent-forwarding"></a> <a name="agent-forwarding"></a>
## Agent Forwarding ## Agent Forwarding
If you run the Ansible Playbook remotely on your Ansible Master Server, Agent Forwarding must be enabled in order to let Ansible connect to newly created machines. If you run the Ansible Playbook remotely on your Ansible Master Server, Agent Forwarding must be enabled in order to let Ansible connect to newly created machines.