Member-only story
How to install Ansible in Debian 11
The easier way to install the latest version of Ansible and maintain up-to-date in Debian 11 using APT and the “main” default repository.
How to install Ansible in Debian version 11?
Today we’re going to talk about the easier way to install and maintain Ansible inside Debian using the default “main” repository.
I’m Luca Berton and welcome to today’s episode of Ansible Pilot.
How to install Ansible in Debian
- Included in the “
main
” default repository
Today we’re talking about How to install Ansible in Debian.
The good news is that Ansible is included in the default repository so you could install it simply with your usual package manager “apt”.
You could expect the latest version of Ansible in the “main” repository.
demo
Install Ansible in Debian using the apt package manager and the “main
” default repository.
- install-ansible-debian.sh
#!/bin/bash
$ sudo apt-get update
$ sudo apt-get install…