Update default.sh

This commit is contained in:
osconlab 2023-04-02 21:25:58 +02:00
parent f2781f3c73
commit e830aef379
1 changed files with 8 additions and 0 deletions

View File

@ -1,2 +1,10 @@
apt update && sudo apt upgrade -y apt update && sudo apt upgrade -y
apt install htop curl -y apt install htop curl -y
while true; do
read -p "Do you wish to install docker" yn
case $yn in
[Yy]* ) ./docker.sh; break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done