tools/deployment/libvirt/install_packages.sh

12 lines
245 B
Bash
Executable File

#!/usr/bin/env bash
# install_packages.sh - install required packages
sudo apt-get install virt-manager libvirt-bin qemu-system -y
cat << EOF | sudo tee /etc/libvirt/qemu.conf
user = "root"
group = "root"
EOF
sudo service libvirt-bin restart