diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-11-14 19:36:03 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-11-14 19:36:03 +0100 |
commit | 6716e1b213d8108dac86d688f17016faa7f03c1a (patch) | |
tree | c47e8bb29235dfc39c01de802b467c2d3f053c07 /bin/second_stage.sh | |
parent | b872b3eba4209f7a3c7c554a020eb6b4af606d80 (diff) | |
download | archinstall-6716e1b213d8108dac86d688f17016faa7f03c1a.tar archinstall-6716e1b213d8108dac86d688f17016faa7f03c1a.tar.zst archinstall-6716e1b213d8108dac86d688f17016faa7f03c1a.zip |
Improved code readability and avoided output redirect to /dev/null.
Diffstat (limited to 'bin/second_stage.sh')
-rw-r--r-- | bin/second_stage.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/bin/second_stage.sh b/bin/second_stage.sh index f3353d3..f2fe43a 100644 --- a/bin/second_stage.sh +++ b/bin/second_stage.sh @@ -28,8 +28,6 @@ hostname=$1 boot_partition_path=$2 REPOSITORY_PATH=$3 -echo "hostname: $hostname" -echo "boot_partition_path: $boot_partition_path" # Localization @@ -58,3 +56,10 @@ sleep 1 # Bootloader Installation bash $REPOSITORY_PATH/bin/install_bootloader.sh $boot_partition_path + + +# Good bye chroot + +echo "Leaving chroot environment - OK" +echo "" +sleep 1 |