aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2019-11-30 19:25:38 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2019-11-30 19:25:38 +0100
commite60409e8c5c793d2251438e2e184a113aead55f1 (patch)
treef9046b8839b8577b4d8c1fee19a9c3c494b0a792
parentBetter code quality (diff)
downloadarch-installer-e60409e8c5c793d2251438e2e184a113aead55f1.tar.gz
arch-installer-e60409e8c5c793d2251438e2e184a113aead55f1.tar.bz2
arch-installer-e60409e8c5c793d2251438e2e184a113aead55f1.tar.xz
arch-installer-e60409e8c5c793d2251438e2e184a113aead55f1.tar.zst
arch-installer-e60409e8c5c793d2251438e2e184a113aead55f1.zip
Better comments
-rwxr-xr-xarch-installer.sh14
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