2023-03-30 14:28:10 +02:00
|
|
|
# ===================================================================================================
|
2023-02-27 16:39:00 +01:00
|
|
|
# ? 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.
|
2023-03-30 14:28:10 +02:00
|
|
|
# ===================================================================================================
|
2023-02-27 16:39:00 +01:00
|
|
|
|
|
|
|
|
---
|
|
|
|
|
- name: Install aptitude and software-properties-common
|
2024-04-12 15:12:30 +02:00
|
|
|
ansible.builtin.package:
|
2023-02-27 16:39:00 +01:00
|
|
|
name:
|
|
|
|
|
- aptitude
|
|
|
|
|
- software-properties-common
|
2024-04-12 15:12:30 +02:00
|
|
|
state: present
|
2023-02-27 16:39:00 +01:00
|
|
|
when: ansible_distribution in ["Debian", "Pop!_OS", "Ubuntu"]
|