diff --git a/inventory_baremetal_example.yml b/inventory_baremetal_example.yml index adb97ac..39d7de4 100644 --- a/inventory_baremetal_example.yml +++ b/inventory_baremetal_example.yml @@ -1,9 +1,19 @@ --- all: + vars: + hypervisor: + type: "none" + filesystem: "ext4" hosts: baremetal01.example.com: ansible_host: 10.0.0.162 ansible_user: root ansible_password: "1234" ansible_become_password: "1234" - hostname: "baremetal01.example.com" + system: + type: "physical" + os: "archlinux" + name: "baremetal01.example.com" + disks: + - device: "/dev/sda" + size: 120 diff --git a/roles/cis/tasks/modules.yml b/roles/cis/tasks/modules.yml index a6c95a7..21c1485 100644 --- a/roles/cis/tasks/modules.yml +++ b/roles/cis/tasks/modules.yml @@ -18,7 +18,7 @@ install rds /bin/false install tipc /bin/false -- name: Remove legacy USB rules file +- name: Remove old USB rules file ansible.builtin.file: path: /mnt/etc/udev/rules.d/10-cis_usb_devices.sh state: absent