scripts/default.sh

13 lines
305 B
Bash
Raw Normal View History

2023-04-03 22:04:07 +02:00
dpkg-reconfigure tzdata
2023-04-02 21:19:16 +02:00
apt update && sudo apt upgrade -y
apt install htop curl -y
2023-04-02 21:31:02 +02:00
chmod +x ./docker.sh
2023-04-02 21:25:58 +02:00
while true; do
2023-04-02 21:29:00 +02:00
read -p "Do you wish to install docker: ?" yn
2023-04-02 21:25:58 +02:00
case $yn in
[Yy]* ) ./docker.sh; break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done