From: Dietmar Maurer Date: Thu, 16 Feb 2012 11:00:16 +0000 (+0100) Subject: increase free space on LVM up to 16GB X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=5586ceddde700f08269f512ac59933b629dd7894;p=pve-installer.git increase free space on LVM up to 16GB --- diff --git a/Makefile b/Makefile index 6d86e05..a3827d8 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # achtung: also set release in proxinstall! RELEASE=2.0 -DEB=pve-installer_2.0-2_all.deb +DEB=pve-installer_2.0-3_all.deb INSTALLER_SOURCES= \ unconfigured.sh \ diff --git a/changelog.Debian b/changelog.Debian index 62c12aa..1c36160 100644 --- a/changelog.Debian +++ b/changelog.Debian @@ -1,3 +1,9 @@ +pve-installer (2.0-3) unstable; urgency=low + + * increase free space on LVM up to 16GB + + -- Proxmox Support Team Thu, 16 Feb 2012 11:59:55 +0100 + pve-installer (2.0-2) unstable; urgency=low * support new kernel parameter 'ext4' switch (use ext4 instead of ext3) diff --git a/proxinstall b/proxinstall index 83a80f3..e0bceae 100755 --- a/proxinstall +++ b/proxinstall @@ -615,7 +615,7 @@ sub extract_data { $swapsize = $ss*1024*1024; } - my $space = (($hdgb > 32) ? 4 : ($hdgb/8))*1024*1024; + my $space = (($hdgb > 128) ? 16 : ($hdgb/8))*1024*1024; my $maxroot; if ($cmdline =~ m/maxroot=(\d+)[\s\n]/i) {