[pve-devel] r6167 - pve-installer/pve2
svn-commits at proxmox.com
svn-commits at proxmox.com
Fri Jun 24 14:07:34 CEST 2011
Author: dietmar
Date: 2011-06-24 14:07:34 +0200 (Fri, 24 Jun 2011)
New Revision: 6167
Modified:
pve-installer/pve2/proxinstall
Log:
always use ext4, even for /boot
Modified: pve-installer/pve2/proxinstall
===================================================================
--- pve-installer/pve2/proxinstall 2011-06-24 11:56:56 UTC (rev 6166)
+++ pve-installer/pve2/proxinstall 2011-06-24 12:07:34 UTC (rev 6167)
@@ -624,7 +624,7 @@
if ( -b $target_hd) {
$bootdev = get_boot_part ($target_hd);
- create_filesystem ($bootdev, 'boot', 'ext2', 0.05, $maxper, 0, 0.1);
+ create_filesystem ($bootdev, 'boot', 'ext4', 0.05, $maxper, 0, 0.1);
create_filesystem ($rootdev, 'root', 'ext4', 0.05, $maxper, 0.1, 0.5);
create_filesystem ($datadev, 'data', 'ext4', 0.05, $maxper, 0.5, 1, '-m 0');
} else {
@@ -746,7 +746,7 @@
$fstab .= "$datadev /var/lib/vz ext4 defaults 0 1\n" if $datadev;
- $fstab .= "${boot_uuid} /boot ext2 defaults 0 1\n" if $boot_uuid;
+ $fstab .= "${boot_uuid} /boot ext4 defaults 0 1\n" if $boot_uuid;
$fstab .= "$swapfile none swap sw 0 0\n" if $swapfile;
More information about the pve-devel
mailing list