Getting started with Ansible
The first thing to know about Ansible is that it changes constantly. New versions with exciting features are released regularly, and it shows no sign of slowing down whatsoever. There is a lot of excitement around this technology, so it's regularly improving. The reason I'm bringing this up is that many distributions offer an older version of Ansible in their repositories, with Ubuntu being no exception. That means that if you simply run apt install ansible
to get the software from Ubuntu's repositories, you may get an older version, and that version may not work with example solutions you find online. If you run into this situation, you may need to install a newer version of Ansible directly from the vendor's website to overwrite the older version that ships with Ubuntu 20.04.
The examples in this book were created with Ansible 2.9.x in mind, which is the version that ships with Ubuntu 20.04. However, depending on when you...