Initial commit

This commit is contained in:
Tyler Hale 2021-09-01 17:31:49 -06:00
parent 46a6f7d3ec
commit 49ba7cd121
40 changed files with 1121 additions and 0 deletions

View file

@ -0,0 +1,40 @@
---
# file: roles/base/tasks/debian.yml
- name: Install Current Updates
apt:
upgrade: full
update_cache: yes
when: base_core_install_updates == true
- name: "*** Debian: Kernel Configuration ***"
include_tasks:
file: debian_kernel.yml
apply:
tags: kernel
tags:
- kernel
- name: "*** Debian: Time Sync Configuration ***"
include_tasks:
file: debian_time_sync.yml
apply:
tags: time_sync
tags:
- time_sync
- name: "*** Debian: Automatic Updates Configuration ***"
include_tasks:
file: debian_automatic_updates.yml
apply:
tags: automatic_updates
tags:
- automatic_updates
- name: "*** Debian: Firewall Configuration ***"
include_tasks:
file: debian_firewall.yml
apply:
tags: firewall
tags:
- firewall