Add a script for installing virt-manager
This commit is contained in:
parent
c9fd93d649
commit
c589396170
2 changed files with 10 additions and 0 deletions
|
@ -45,6 +45,7 @@ source "$softwareRoot/nodejs.sh"
|
|||
source "$softwareRoot/java.sh"
|
||||
source "$softwareRoot/tea.sh"
|
||||
source "$softwareRoot/godot.sh"
|
||||
source "$softwareRoot/virt-manager.sh"
|
||||
|
||||
# Install other flatpaks
|
||||
flatpak install -y flathub com.bitwarden.desktop
|
||||
|
|
9
scripts/PopOS/software/virt-manager.sh
Executable file
9
scripts/PopOS/software/virt-manager.sh
Executable 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
|
Loading…
Reference in a new issue