configs/roles/common/tasks/main.yml

16 lines
384 B
YAML
Raw Normal View History

2022-01-23 21:43:00 -05:00
---
2022-01-30 19:45:07 -05:00
- name: Import machine-specific variables
ignore_errors: yes # if the file doesn't exist, np, we have a default.yml
include_vars:
file: "{{ ansible_hostname }}.yml"
2022-01-23 21:43:00 -05:00
- include: selinux.yml
- include: packages.yml
- include: users.yml
2022-01-30 18:02:11 -05:00
- include: nix.yml
2022-07-04 13:26:16 -04:00
- include: sshd.yml
- name: Disable wake on USB
import_tasks: disable_usb_wake.yml
when: disable_usb_wake == True