Ansible is an open-source software provisioning, configuration management, and application-deployment tool. It runs on many Unix-like systems, and can configure both Unix-like systems as well as Microsoft Windows. It includes its own declarative language to describe system configuration. Ansible is agentless, temporarily connecting remotely via SSH or Windows Remote Management (allowing remote PowerShell execution) to do its tasks.
iX 10/2023 - Page 102 - Event-Driven Ansible – automatisch automatisiert
Linux-Magazin 03/2023 - Page 52 - Die zehn besten Tricks im Umgang mit Ansible
Linux-Magazin 04/2023 - Page 60 - Grundkurs Ansible, Teil 1: Einstieg, Installation, Basics
Linux-Magazin 05/2023 - Page 56 - Grundkurs Ansible, Teil 2: Variablen, Templates, eigene Rollen
Linux-Magazin 06/2023 - Page 42 - Grundkurs Ansible, Teil 3: Eigene Module schreiben
Linux-Magazin 07/2023 - Page 58 - Grundkurs Ansible, Teil 4: Werkzeuge, Monitoring, Debugging für den Support
Manual pages:
user@host:~$
To install Ansible on Debian:
root@host:~$ apt-get -y install ansible
user@host:~$ ssh-keygen -t rsa -b 4096 -C "Ansible $(hostname -f)" -f ~/.ssh/id_rsa_ansible
To check the status of :
root@host:~$