nginx.sh updated

This commit is contained in:
Fr4nz D13trich 2025-10-08 08:45:42 +02:00
parent e4f985d07f
commit 6c7862d65c

View file

@ -21,11 +21,11 @@ else
echo -e "$bin is not installed.\n"
read -p "Do you wish to install $bin via APT? : " install
if [$install == yY]; then
if [$install == "yY"]; then
sudo apt update && sudo apt install -y $bin
echo -e "\n$bin installed. Proceeding...\n"
elif [$install == nN]; then
elif [$install == "nN"]; then
echo -e "Dependencies not installed... Exiting"
exit 0
fi