Files
ansible-automations/roles/setup/tasks/software/repositories.yml
2024-04-12 15:12:30 +02:00

18 lines
763 B
YAML

# ===================================================================================================
# ? ABOUT
# @author : Noah Knegt
# @email : personal@noahknegt.com
# @repo : https://git.noahknegt.com/noah.knegt/ansible-automations
# @createdOn : 27-02-2023
# @description : This will contain all the default software for the machines.
# ===================================================================================================
---
- name: Install aptitude and software-properties-common
ansible.builtin.package:
name:
- aptitude
- software-properties-common
state: present
when: ansible_distribution in ["Debian", "Pop!_OS", "Ubuntu"]