diff options
-rw-r--r-- | fsset.py | 2 | ||||
-rw-r--r-- | kickstart.py | 2 | ||||
-rw-r--r-- | partRequests.py | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1877,7 +1877,7 @@ ext2 = fileSystemTypeGet("ext2") ext2.registerDeviceArgumentFunction(RAIDDevice, RAIDDevice.ext2Args) class VolumeGroupDevice(Device): - def __init__(self, name, physvols, pesize = 4096, existing = 0): + def __init__(self, name, physvols, pesize = 32768, existing = 0): """Creates a VolumeGroupDevice. name is the name of the volume group diff --git a/kickstart.py b/kickstart.py index 803b05574..baed330a6 100644 --- a/kickstart.py +++ b/kickstart.py @@ -968,7 +968,7 @@ class KickstartBase(BaseInstallClass): preexist = 0 format = 1 - pesize = 4096 + pesize = 32768 vgname = extra[0] diff --git a/partRequests.py b/partRequests.py index 1fbdf67a3..3cd4b606e 100644 --- a/partRequests.py +++ b/partRequests.py @@ -676,7 +676,7 @@ class VolumeGroupRequestSpec(RequestSpec): def __init__(self, fstype =None, format = None, vgname = None, physvols = None, - pesize = 4096, preexist = 0, + pesize = 32768, preexist = 0, preexist_size = 0): """Create a new VolumeGroupRequestSpec object. |