diff options
author | xengineering <mail2xengineering@protonmail.com> | 2020-03-17 12:13:51 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2020-03-17 12:13:51 +0100 |
commit | f0b4b9058a1631bf2fb4c3d24a3b9dce04acfc7e (patch) | |
tree | 59c8d23a3f63e45908f3c21cfc7cc74385af744d /stages/second_stage.sh | |
parent | d34ad5ed895bfa16374e455f88fb6d7a28063435 (diff) | |
download | archinstall-f0b4b9058a1631bf2fb4c3d24a3b9dce04acfc7e.tar archinstall-f0b4b9058a1631bf2fb4c3d24a3b9dce04acfc7e.tar.zst archinstall-f0b4b9058a1631bf2fb4c3d24a3b9dce04acfc7e.zip |
Start from Scratch for a Rewrite
Diffstat (limited to 'stages/second_stage.sh')
-rw-r--r-- | stages/second_stage.sh | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/stages/second_stage.sh b/stages/second_stage.sh index 30dc495..abb8ed9 100644 --- a/stages/second_stage.sh +++ b/stages/second_stage.sh @@ -18,21 +18,9 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. -echo "Entering second_stage.sh - OK" - - -bash configure_keyboard.sh de-latin1 - -bash configure_locales.sh +# Stop at any error to optimize debugging: -bash configure_timezone.sh /usr/share/zoneinfo/Europe/Berlin +set -e -bash configure_network.sh $hostname -bash configure_initramfs.sh - -bash configure_users.sh $admin_username $DEFAULT_PASSWORD - -bash install_bootloader.sh $efi_partition_path $system_encryption $main_partition_path $boot_mode - -bash configure_desktop.sh +echo "Entering second_stage.sh - OK" |