Files
ansible-automations/roles/setup/tasks/software/repositories.yml
Noah Knegt aa9e658986
Some checks failed
continuous-integration/drone Build is failing
Fix the yamllint errors
Signed-off-by: Noah Knegt <git@noahknegt.com>
2023-03-30 14:28:10 +02:00

18 lines
746 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
package:
name:
- aptitude
- software-properties-common
state: latest
when: ansible_distribution in ["Debian", "Pop!_OS", "Ubuntu"]