Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Ansible/roles/kvm/tasks/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,16 @@
- tcpdump
- qemu-kvm
- parted

- name: Install packages for UEFI
apt:
pkg: "{{ item }}"
state: latest
update_cache: yes
with_items:
- ovmf
- swtpm
when: ansible_distribution_major_version|int >= 22

- name: Install basic utilities and tools - pre bionic
apt:
Expand Down Expand Up @@ -384,6 +392,7 @@
src: uefi.properties.Ubuntu
dest: /etc/cloudstack/agent/uefi.properties
mode: 0644
when: ansible_distribution_major_version|int >= 22

- name: restart machine (Ubuntu networking restart bug #1301015)
command: shutdown -r now "Ansible updates triggered"
Expand Down