diff --git a/prepare.sh b/prepare.sh index b9c599345..7f88c20f1 100755 --- a/prepare.sh +++ b/prepare.sh @@ -80,6 +80,10 @@ set -x dnf -y install git podman make +# minikube wants the user (everything runs as root) to be in the libvirt group +getent group libvirt || groupadd --system libvirt +usermod --append --groups libvirt root + # if --history is passed, don't pass --depth=1 depth='--depth=1' if [[ "${history}" == 'yes' ]]