diff options
Diffstat (limited to 'arch-installer.sh')
-rwxr-xr-x | arch-installer.sh | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/arch-installer.sh b/arch-installer.sh index 308ed39..5ab1f50 100755 --- a/arch-installer.sh +++ b/arch-installer.sh @@ -457,7 +457,9 @@ jo_pacstrap() { echo "$2" | dialog --title "IV. INSTALLING LINUX" --gauge "Installing $1" 7 70 0 pacstrap /mnt/arch "$1" > /dev/null 2>&1 } - +#==================================================================================================# +#------------------------------------------- FSTAB CONFIG ----------------------------------------# +#==================================================================================================# jo_fstab() { dialog --title "$1"\ --infobox "Generating fstab"\ @@ -465,7 +467,9 @@ jo_fstab() { genfstab -U -p /mnt/arch > /mnt/arch/etc/fstab sleep 2 } - +#==================================================================================================# +#-------------------------------------------- ARCH-CHROOT -----------------------------------------# +#==================================================================================================# jo_arch_chroot() { arch-chroot /mnt/arch ln -sf /usr/share/zoneinfo/Europe/Paris /etc/localtime arch-chroot /mnt/arch hwclock --systohc @@ -674,13 +678,7 @@ if [ "$extras" = true ]; then 7 70 0 sleep 4 fi -#==================================================================================================# -#------------------------------------------- FSTAB CONFIG ----------------------------------------# -#==================================================================================================# jo_fstab "IV. INSTALLING LINUX" -#==================================================================================================# -#-------------------------------------------- ARCH-CHROOT -----------------------------------------# -#==================================================================================================# dialog --title "V. CONFIGURING LINUX"\ --infobox "Finishing configuration"\ 3 30 |