Add a script for installing virt-manager

This commit is contained in:
Manuel Thalmann 2022-11-23 09:05:36 +01:00
commit c589396170
2 changed files with 10 additions and 0 deletions
scripts/PopOS/software

View file

@ -0,0 +1,9 @@
#!/bin/bash
# Elevate script
if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE"
else
sudo apt update
sudo apt install -y swtpm swtpm-tools libvirt-daemon-system virt-manager
fi