major refactoring

This commit is contained in:
2022-01-18 23:48:56 +01:00
parent 034332b237
commit fe83fd37f0
40 changed files with 501 additions and 433 deletions

View File

@@ -0,0 +1,23 @@
---
- name: Include users
ansible.builtin.include: users.yml
when: config_users_enable | bool
- name: Include grub
ansible.builtin.include: grub.yml
when: config_grub_enable | bool
- name: Include networking
ansible.builtin.include: networking.yml
- name: Include sysctl
ansible.builtin.include: sysctl.yml
when: config_sysctl_enable | bool
- name: Include btrfs
ansible.builtin.include: btrfs.yml
when: config_btrfs_enable | bool
- name: Include fstab
ansible.builtin.include: fstab.yml
when: config_fstab_enable | bool