nginx.sh updated
This commit is contained in:
parent
e4f985d07f
commit
6c7862d65c
1 changed files with 2 additions and 2 deletions
|
|
@ -21,11 +21,11 @@ else
|
||||||
echo -e "$bin is not installed.\n"
|
echo -e "$bin is not installed.\n"
|
||||||
read -p "Do you wish to install $bin via APT? : " install
|
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
|
sudo apt update && sudo apt install -y $bin
|
||||||
echo -e "\n$bin installed. Proceeding...\n"
|
echo -e "\n$bin installed. Proceeding...\n"
|
||||||
|
|
||||||
elif [$install == nN]; then
|
elif [$install == "nN"]; then
|
||||||
echo -e "Dependencies not installed... Exiting"
|
echo -e "Dependencies not installed... Exiting"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue