Skip to content

Commit

Permalink
storage: fix check for reqpart.addBoot availability
Browse files Browse the repository at this point in the history
This mistake was preventing /boot from not being required in the custom
partitioning.
  • Loading branch information
KKoukiou committed Nov 23, 2023
1 parent 149f6fd commit 7a41e5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _execute_reqpart(self, storage, data):
:param storage: an instance of the Blivet's storage object
:param data: an instance of kickstart data
"""
if not data.reqpart.reqpart:
if not data.reqpart.addBoot:
return

log.debug("Looking for platform-specific requirements.")
Expand Down

0 comments on commit 7a41e5a

Please sign in to comment.