Files
ansible-automations/roles/setup/tasks/main.yml
Noah Knegt 96ce6a4320
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Add fixes for nvm
Signed-off-by: Noah Knegt <git@noahknegt.com>
2023-06-01 12:02:45 +02:00

25 lines
915 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 file contains the tasks for the base role, this role will be applied to
# all machines.
# ===================================================================================================
---
- include_vars: "{{ ansible_distribution }}.yml"
# Setup the ansible user
- include_tasks: users/ansible.yml
- include_tasks: users/noahk.yml
# Setup the sshd
- include_tasks: system/openssh.yml
# Setup the repositories for Debian based systems
- include_tasks: software/repositories.yml
- include_tasks: software/acl.yml