diff options
Diffstat (limited to 'others/vm3/.config/init/install_packages.sh')
| -rwxr-xr-x | others/vm3/.config/init/install_packages.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/others/vm3/.config/init/install_packages.sh b/others/vm3/.config/init/install_packages.sh deleted file mode 100755 index d5ca81f..0000000 --- a/others/vm3/.config/init/install_packages.sh +++ /dev/null | |||
| @@ -1,12 +0,0 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | |||
| 3 | #install packages | ||
| 4 | packages=("nc" "htop" "wireguard-tools" "bind-utils" "tmux" "net-tools" "curl" "mlocate" "dnsmasq" "qemu-kvm" "libvirt" "libvirt-daemon-kvm" "virt-install" "virt-manager" "genisoimage" "bc") | ||
| 5 | |||
| 6 | for package in "${packages[@]}"; do | ||
| 7 | if ! rpm -q "$package" &> /dev/null; then | ||
| 8 | sudo dnf install -y "$package" | ||
| 9 | fi | ||
| 10 | done | ||
| 11 | |||
| 12 | sudo systemctl enable --now libvirtd | ||
