PortValhalla/scripts/Arch/Software/virt-manager/main.fish

28 lines
620 B
Fish
Raw Permalink Normal View History

#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
2024-10-13 13:35:24 +00:00
inherit "$dir/../../../Common/Software/virt-manager/main.fish"
function installSW
yayinst qemu-full
2024-07-28 21:45:30 +00:00
yes | runPacman --asdeps iptables-nft
2024-07-17 14:18:31 +00:00
yes | yayinst \
virtiofsd \
virt-manager \
dnsmasq \
swtpm \
lxc \
virt-bootstrap-git
end
function configureSW
sudo systemctl enable --now libvirtd
sudo systemctl enable --now virtlogd
configureSWBase $argv
end
runInstaller $argv
end