From b10e68c1c51ee8d8778b2e77b5ec536de19c386d Mon Sep 17 00:00:00 2001 From: Hal Emmerich Date: Mon, 21 Oct 2019 00:23:52 -0500 Subject: [PATCH] fix fs expansion --- scripts/InstallScripts/InstallPrawnOS.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/InstallScripts/InstallPrawnOS.sh b/scripts/InstallScripts/InstallPrawnOS.sh index b28aad1..941b27b 100755 --- a/scripts/InstallScripts/InstallPrawnOS.sh +++ b/scripts/InstallScripts/InstallPrawnOS.sh @@ -248,8 +248,8 @@ expand() { #Reload the partition mapping partprobe $BOOT_DEVICE #Force the filesystem to fill the new partition - resize2fs -f ${BOOT_DEVICE}p2 - echo "/dev/${BOOT_DEVICE}p2 / ext4 defaults,noatime 0 1" > /etc/fstab + resize2fs -f ${BOOT_DEVICE}2 + echo "/dev/${BOOT_DEVICE}2 / ext4 defaults,noatime 0 1" > /etc/fstab }