Hi,
I am new to Ansible and I am working a playbook that requires to have Development-tool installed on on CentOS based server. However, I was thinking about writing playbook that will be applicable to Debian-based OSs such as Ubuntu for example. What would be the module that can install Development-tools on both Fedora and Debian based systems?
This is what I currently have:
tasks:
- name: Install Development Tools, git, curl, htop
yum: name={{ item }} state=present update_cache=yes
with_items:
- "@development_tools"
- git
- curl
- htop
Thanks for you help.