Add seperations via comments

This commit is contained in:
York-Simon Johannsen 2019-11-03 01:10:35 +01:00
parent ff5f677340
commit 44a238ca73
No known key found for this signature in database
GPG Key ID: 006F8812A4B527D9
1 changed files with 22 additions and 0 deletions

View File

@ -1,10 +1,27 @@
#!/usr/bin/env bash
###
# Variabeln setzung
###
###
# Begrüßung
###
echo -e "\nComputertruhe-Setup"
echo "-------------------"
echo ">>> Starte initiales Setup für Rechner mit frisch installiertem Linux Mint 19 ..."
###
# Root modus
###
echo ">>> Rootshell öffnen ..."
sudo -i
###
# Automatisierung
###
echo ">>> Automatische Installation empfohlener Pakete aktivieren ..."
sudo sed -i 's/false/true/g' /etc/apt/apt.conf.d/00recommends
echo ">>> Besten Spiegelserver für Linux Mint auswählen ..."
@ -29,6 +46,11 @@ apt clean
apt autoremove -y
echo ">>> Rootshell beenden ..."
exit
###
# Abschluss
###
echo ">>> Initiales Setup beendet."
echo
echo ">>> To-dos:"