17 lines
348 B
Bash
Executable file
17 lines
348 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
yay --noconfirm -Syu \
|
|
virt-manager \
|
|
qemu-full \
|
|
dnsmasq \
|
|
iptables-nft \
|
|
swtpm \
|
|
lxc \
|
|
virt-bootstrap-git;
|
|
|
|
sudo systemctl enable --now libvirtd;
|
|
sudo systemctl enable --now virtlogd;
|
|
. "../../../Common/Config/Virtual Machine Manager/install.sh";
|
|
|
|
popd > /dev/null;
|