2020-12-21 04:19:21 -06:00
|
|
|
---
|
|
|
|
# Harmonize my systems rather than doing everything manually. :)
|
2020-12-28 18:37:37 -06:00
|
|
|
|
2020-12-28 20:06:41 -06:00
|
|
|
# Everything
|
2020-12-31 17:50:51 -06:00
|
|
|
- hosts: localhost
|
2020-12-28 20:06:41 -06:00
|
|
|
become: true
|
|
|
|
|
|
|
|
pre_tasks:
|
2020-12-28 21:32:28 -06:00
|
|
|
- include: facts/filesystem_names.yml
|
2020-12-28 20:21:01 -06:00
|
|
|
- include: facts/package_names.yml
|
|
|
|
- include: facts/service_names.yml
|
2020-12-28 20:06:41 -06:00
|
|
|
|
2020-12-21 04:19:21 -06:00
|
|
|
tasks:
|
2020-12-21 04:52:37 -06:00
|
|
|
- include: tasks/users.yml
|
|
|
|
- include: tasks/cron.yml
|
|
|
|
- include: tasks/packages.yml
|
2020-12-21 18:18:26 -06:00
|
|
|
- include: tasks/harden.yml
|
2020-12-21 05:50:12 -06:00
|
|
|
|
2020-12-28 20:06:41 -06:00
|
|
|
|
|
|
|
# Desktops and laptops
|
2020-12-21 05:50:12 -06:00
|
|
|
- hosts: workstation
|
2020-12-21 05:44:28 -06:00
|
|
|
become: true
|
2020-12-28 20:06:41 -06:00
|
|
|
|
2020-12-21 05:44:28 -06:00
|
|
|
tasks:
|
2020-12-21 05:25:19 -06:00
|
|
|
- include: tasks/flatpaks.yml
|
2020-12-28 20:57:05 -06:00
|
|
|
|
|
|
|
|
2020-12-31 17:50:51 -06:00
|
|
|
# Run hardness checks
|
2020-12-28 20:57:05 -06:00
|
|
|
- hosts: all
|
|
|
|
become: true
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- include: tasks/hardness_check_lynis.yml
|