diff options
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 |