mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-06 01:55:28 -05:00
16 lines
418 B
Bash
Executable File
16 lines
418 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
shopt -s inherit_errexit
|
|
|
|
# Assign qemu the GID of the host system's 'kvm' group to avoid permission issues for environments defaulting to 660 for /dev/kvm (e.g. Debian-based distros)
|
|
KVM_HOST_GID="$(stat -c '%g' /dev/kvm)"
|
|
groupadd -o -g "${KVM_HOST_GID}" host-kvm
|
|
usermod -a -G host-kvm qemu
|
|
|
|
# Start libvirt daemon
|
|
libvirtd --daemon --listen
|
|
virtlogd --daemon
|
|
|
|
sleep infinity
|