summaryrefslogtreecommitdiffstats
path: root/client/engine/Image.lib
diff options
context:
space:
mode:
Diffstat (limited to 'client/engine/Image.lib')
-rwxr-xr-xclient/engine/Image.lib4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/engine/Image.lib b/client/engine/Image.lib
index 0a0867f2..5ce8aa1c 100755
--- a/client/engine/Image.lib
+++ b/client/engine/Image.lib
@@ -506,7 +506,9 @@ IMGSIZE=$(ogGetImageSize "$1" "$2") || return $(ogRaiseError $OG_ERR_IMAGE " $1
#TODO:
#Si la particion no esta formateado o tiene problemas formateamos
ogMount $3 $4 || ogFormat $3 $4
-PARTSIZE=$(parted `ogDiskToDev $3 $4` unit kB print | awk '{y=x; x=$4};END{print y}' | tr -d kB)
+#PARTSIZE=$(parted -sm $DISK unit kB print | \
+# awk -F: -v np=$4 '{if ($1==np) {gsub(/kB/,""); print $4} } ')
+PARTSIZE=$(ogGetPartitionSize $3 $4)
if [ $IMGSIZE -gt $PARTSIZE ]; then
ogRaiseError $OG_ERR_IMGSIZEPARTITION " $PARTSIZE < $IMGSIZE"
return $?