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 file contains the tasks for the base role, this role will be applied to
|
|
|
|
|
# all machines.
|
2023-03-30 14:28:10 +02:00
|
|
|
# ===================================================================================================
|
2023-02-27 16:39:00 +01:00
|
|
|
|
|
|
|
|
---
|
|
|
|
|
- include_vars: "{{ ansible_distribution }}.yml"
|
|
|
|
|
|
2023-03-30 14:28:10 +02:00
|
|
|
# Setup the ansible user
|
|
|
|
|
- include_tasks: users/ansible.yml
|
|
|
|
|
- include_tasks: users/noahk.yml
|
2023-02-27 16:39:00 +01:00
|
|
|
|
2023-03-30 14:28:10 +02:00
|
|
|
# Setup the sshd
|
|
|
|
|
- include_tasks: system/openssh.yml
|
2023-02-27 16:39:00 +01:00
|
|
|
|
2023-03-30 14:28:10 +02:00
|
|
|
# Setup the repositories for Debian based systems
|
|
|
|
|
- include_tasks: software/repositories.yml
|
2023-06-01 12:02:45 +02:00
|
|
|
|
|
|
|
|
- include_tasks: software/acl.yml
|