base: Install more hw utils to physical hosts

This commit is contained in:
Timo Makinen 2023-07-20 17:14:54 +00:00
parent d77fb9a087
commit fdc22fcf6c

View file

@ -81,6 +81,16 @@
- vim-enhanced # working vi :) - vim-enhanced # working vi :)
- xterm # resize - xterm # resize
- name: Install packages for physical hardware
ansible.builtin.package:
name: "{{ item }}"
state: installed
with_items:
- pciutils
- powertop
when:
- ansible_virtualization_role == "host"
- name: Install el7/el8 packages - name: Install el7/el8 packages
ansible.builtin.package: ansible.builtin.package:
name: "{{ item }}" name: "{{ item }}"