We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 42d4eb4 + f2c1bf6 commit e67e51fCopy full SHA for e67e51f
action.yml
@@ -101,7 +101,14 @@ runs:
101
if: ${{ matrix.os == 'ubuntu-24.04' }}
102
shell: bash
103
run: |
104
- sudo apt-get install -y virtiofsd
+ sudo apt-get update
105
+ sudo apt-get install -y virtiofsd libvirt-daemon-system libvirt-daemon-driver-qemu
106
+ if systemctl list-unit-files | grep -q virtqemud.socket; then
107
+ sudo systemctl enable virtqemud.socket
108
+ sudo systemctl start virtqemud.socket
109
+ else
110
+ echo "virtqemud.socket unit file does not exist. Skipping enable/start steps."
111
+ fi
112
113
- name: Enable KVM group perms
114
0 commit comments