blob: 59203cd31165b08bd0a38b102971d7315f20b45a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
|