This commit is contained in:
Santiago Lo Coco 2022-01-30 17:59:31 -03:00
parent ec761093c2
commit d9eb731772
1 changed files with 1 additions and 2 deletions

View File

@ -211,7 +211,6 @@ installPackage() {
else else
pacstrap /mnt --needed "${1}" 2>&1 | debug pacstrap /mnt --needed "${1}" 2>&1 | debug
fi fi
exit
;; ;;
B) B)
flag="" flag=""
@ -291,7 +290,7 @@ installImportantPackages() {
msg="\nWe will continue with the installation of some important packages in the background. Please press OK and wait." msg="\nWe will continue with the installation of some important packages in the background. Please press OK and wait."
dialog --msgbox "$msg" 8 60 dialog --msgbox "$msg" 8 60
dialog --infobox "\nUpgrading archlinux-keyring." 5 32 dialog --infobox "\nUpgrading archlinux-keyring." 5 32
pacman -S --noconfirm archlinux-keyring 2>&1 | debug pacman -Sy --noconfirm archlinux-keyring 2>&1 | debug
getThePackages "Y" "installImportantPackages" getThePackages "Y" "installImportantPackages"
runInChroot "systemctl enable NetworkManager; systemctl enable fstrim.timer" 2>&1 | debug runInChroot "systemctl enable NetworkManager; systemctl enable fstrim.timer" 2>&1 | debug
} }