scripts/default.sh

11 lines
257 B
Bash
Raw Normal View History

2023-04-02 21:19:16 +02:00
apt update && sudo apt upgrade -y
apt install htop curl -y
2023-04-02 21:25:58 +02:00
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