How to use the Ansible apt Module to Manage Linux Packages
https://adamtheautomator.com/ans22.09.2021 · Ansible is a popular automation platform allowing you to manage thousands of nodes at one time. One of the most valuable features of Ansible is its ability to manage software packages on remote computers with the Ansible apt module.. With an apt module, you can manage Ubuntu or Debian-based machines packages, such as updating the package to the …
How to install software with Ansible | Opensource.com
opensource.com › article › 20Sep 08, 2020 · For now, just create a directory called install_packages or similar: $ mkdir ~ / install_packages. The file that serves as the Ansible playbook can be named anything you like, but it's traditional to name it site.yml: $ touch ~ / install_packages / site.yml. Open site.yml in your favorite text editor, and add this:---