mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
virt-lxc-convert: make free return values in bytes
Tiny fix for virt-lxc-convert: we are setting memory values in bytes, while free may give us values in a different unit by default: force free to output bytes with -b flag.
This commit is contained in:
parent
315fba9c60
commit
dba3432b88
@ -64,7 +64,7 @@ if test -r "$fstab"; then
|
||||
sed 's/^\([^#]\)/lxc.mount.entry = \1/' "$fstab" >>"${conf_new}"
|
||||
fi
|
||||
|
||||
memory=$(free | sed -n '/Mem:/s/ \+/ /gp' | cut -f 2 -d ' ')
|
||||
memory=$(free -b | sed -n '/Mem:/s/ \+/ /gp' | cut -f 2 -d ' ')
|
||||
default_tmpfs="size=$((memory/2))"
|
||||
|
||||
# Do we have tmpfs without size param?
|
||||
|
Loading…
Reference in New Issue
Block a user