Update install.sh

main
trrgrnd 2024-12-23 22:28:25 +00:00
parent 806ed43fca
commit 3ca180dace
1 changed files with 2 additions and 2 deletions

View File

@ -26,10 +26,10 @@ function is_x64 {
function choose_packages {
if is_x64 ; then
print_ylw "[ install with docker ]"
packages="curl openssh-server iptables git nmap tcpdump net-tools wireguard tmux mc docker docker-compose"
packages="curl openssh-server iptables git nmap tcpdump net-tools wireguard resolvconf tmux mc docker docker-compose"
else
print_ylw "[ install without docker ]"
packages="curl openssh-server iptables git nmap tcpdump net-tools wireguard tmux"
packages="curl openssh-server iptables git nmap tcpdump net-tools wireguard resolvconf tmux"
fi
}