Skip to content

Commit

Permalink
New RHEL 9.4 ISO is to big to fit, had to make the partitions larger (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
elicriffield committed May 3, 2024
1 parent 60a68ec commit 75616c8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ def main():
utils.Execute(['parted', installer_disk, 'mklabel', 'gpt'])
utils.Execute(['sync'])
utils.Execute(['parted', installer_disk, 'mkpart', 'primary', 'fat32', '1MB',
'1024MB'])
'2048MB'])
utils.Execute(['sync'])
utils.Execute(['parted', installer_disk, 'mkpart', 'primary', 'ext2',
'1024MB', '100%'])
'2048MB', '100%'])
utils.Execute(['sync'])
utils.Execute(['parted', installer_disk, 'set', '1', 'boot', 'on'])
utils.Execute(['sync'])
Expand Down

0 comments on commit 75616c8

Please sign in to comment.