Initial commit
This commit is contained in:
parent
46a6f7d3ec
commit
49ba7cd121
40 changed files with 1121 additions and 0 deletions
40
roles/base/tasks/debian.yml
Normal file
40
roles/base/tasks/debian.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue