Fix fstab bug

This commit is contained in:
Santiago Lo Coco 2021-12-22 21:07:05 -03:00
parent 25ae9b4728
commit 0449fe7c8d
1 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,7 @@ installPackages() {
}
generateFstab() {
genfstab -U /mnt >> /mnt/etc/fstab
genfstab -U /mnt > /mnt/etc/fstab
}
setTimeZone() {
@ -107,6 +107,7 @@ installMorePackages() {
}
grubSetUp() {
# TODO: ver si se corre esto....
runInChroot "grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=GRUB"
runInChroot "grub-mkconfig -o /boot/grub/grub.cfg"
}