Commit ba879f

2025-07-17 22:57:38 Tebby Dog: added tldr
2-code/bash/bootstrap-script.md ..
@@ 28,7 28,7 @@
When I set up a new server I can run:
```bash
- curl https://somewebsite.com/bootstrap.sh && sudo chmod +x ./bootstrap.sh && sudo ./bootstrap.sh
+ wget https://somewebsite.com/bootstrap.sh && sudo chmod +x ./bootstrap.sh && sudo ./bootstrap.sh
```
There is also this version that will download and run the script all in one command, this is an even worse idea than the above if you don't trust the source.
@@ 54,7 54,7 @@
echo "Install common packages?"
if [[ "$answer" == "yes" ]] || [[ "$answer" == "y" ]]; then
echo "Instaling known needed packages."
- sudo apt install nano curl git wget ufw mc -y 1>&2
+ sudo apt install nano curl git wget ufw mc tldr -y 1>&2
exit 1
fi
echo "Install tailscale?" read answer
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9