Skip to content

Commit

Permalink
simplified-installer/fedora: fix root partition size
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Whalen <pwhalen@fedoraproject.org>
  • Loading branch information
Paul Whalen authored and achilleas-k committed Sep 22, 2023
1 parent f8d1e2b commit cf1243b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/distro/fedora/partition_tables.go
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ var iotSimplifiedInstallerPartitionTables = distro.BasePartitionTableMap{
Description: "built with lvm2 and osbuild",
LogicalVolumes: []disk.LVMLogicalVolume{
{
Size: 2569 * common.MebiByte,
Size: 8 * common.GibiByte,
Name: "rootlv",
Payload: &disk.Filesystem{
Type: "ext4",
Expand Down Expand Up @@ -420,7 +420,7 @@ var iotSimplifiedInstallerPartitionTables = distro.BasePartitionTableMap{
Description: "built with lvm2 and osbuild",
LogicalVolumes: []disk.LVMLogicalVolume{
{
Size: 2569 * common.MebiByte,
Size: 8 * common.GibiByte,
Name: "rootlv",
Payload: &disk.Filesystem{
Type: "ext4",
Expand Down

0 comments on commit cf1243b

Please sign in to comment.