Updating install

This commit is contained in:
felixaime 2023-09-01 10:54:41 +02:00
parent 4626fb0b80
commit c0b3244ff9

View File

@ -156,11 +156,11 @@ install_package() {
if [[ $1 == "tshark" || $1 == "sqlite3" || $1 == "suricata" ]]; then if [[ $1 == "tshark" || $1 == "sqlite3" || $1 == "suricata" ]]; then
apt install $1 -y apt install $1 -y
elif [[ $1 == "dig" ]]; then elif [[ $1 == "dig" ]]; then
apt-get install -y dnsutils apt install -y dnsutils
elif [[ $1 == "pip3" ]]; then elif [[ $1 == "pip3" ]]; then
apt-get install -y python3-pip apt install -y python3-pip
elif [[ $1 == "arp" ]]; then elif [[ $1 == "arp" ]]; then
apt-get install -y net-tools apt install -y net-tools
fi fi
} }