diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-09-16 21:52:30 +0200 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-09-16 21:52:30 +0200 |
commit | 0375e041c36556d30b7b5a3e270269a48daf0882 (patch) | |
tree | 466f9d6d9e4ca88417392796167374a4efd09afc /bin/second_stage.sh | |
parent | d1df29a4a74dacc5da224ce042504c68b4e71ef3 (diff) | |
download | archinstall-0375e041c36556d30b7b5a3e270269a48daf0882.tar archinstall-0375e041c36556d30b7b5a3e270269a48daf0882.tar.zst archinstall-0375e041c36556d30b7b5a3e270269a48daf0882.zip |
Added scripts in /bin folder.
Diffstat (limited to 'bin/second_stage.sh')
-rw-r--r-- | bin/second_stage.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/bin/second_stage.sh b/bin/second_stage.sh new file mode 100644 index 0000000..59203cd --- /dev/null +++ b/bin/second_stage.sh @@ -0,0 +1,34 @@ + + +# Second Stage of archinstall + + +hostname=$1 +boot_partition_path=$2 + + +# Localization + +bash /opt/archinstall.git/bin/localization.sh + + +# Network Configuration +bash /opt/archinstall.git/bin/network_configuration.sh $hostname + + +# Initramfs + +# implement if needed ... + + +# Set default Password + +echo "root:root" | chpasswd +echo "Default password for user root set - OK" +echo "" +sleep 1 + + +# Bootloader Installation + +bash /opt/archinstall.git/bin/install_bootloader.sh $boot_partition_path |