Updating an old Ansible role with multiple OS support

from blog Rubenerd, | ↗ original
I had a series of roles in my old Ansible library that were configured, a little something, like this: ./roles/ └── bootstrap/ └── tasks/ ├── debian.yml ├── freebsd.yml ├── illumos.yml ├── main.yml └── netbsd.yml The tasks folder contains playbooks for the most common OSs I use, which were automatically...