From 6c21b221b35866d64f17e22828981f1bec631885 Mon Sep 17 00:00:00 2001 From: Stefan Brand Date: Fri, 17 Sep 2021 17:23:53 +0200 Subject: [PATCH] Add some Readme Infos for publication --- README.md | 12 +++++++++++- archinstall.sh | 4 +++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b331ad..b10d9b5 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # archinstall -A Semi-Automatic Arch Installation Script \ No newline at end of file +A Semi-Automatic Arch Installation Script + +## Disclaimer + +**USE AT YOUR OWN RISK! This script will at least wipe the selected drive, and try to install ArchLinux onto it. Make sure you have backups of anything important on the Machine you run this on. It is intended to be run on an empty box. I am not resposible for any potential damage caused by using this script!** + +This script is mainly created for my own usage, so it will setup things the way I like it, and may change at any time without further notice. Make sure to understand what it does before using it. There are only minimal failsafe and error handling measures in place, so things might (and probably will) go horribly wrong at some point. + +## Description + +This script will install a basic ArchLinux system on (by default encrypted) BTRFS. It will prepare snapper for snapshots and grub to include them. Also some default programms will be installed. Some things can be controlled with commandline parameters, see the script (and potentially the `-?` flag) for details. diff --git a/archinstall.sh b/archinstall.sh index 184f4b5..3514196 100755 --- a/archinstall.sh +++ b/archinstall.sh @@ -234,7 +234,9 @@ EOF echo "Please set a Password for root" arch-chroot /mnt /bin/passwd -echo "Enabling Service" +install_network ${network} + +echo "Enabling Services" systemctl enable sshd grub-btrfs.path --root /mnt echo -e "\n\nInstallation finished, you may further customize it in /mnt or reboot now"