Skip to content

Commit

Permalink
syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
schubi2 committed Apr 25, 2024
1 parent 092a798 commit 612f40f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/lib/bootloader/systemdboot.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ def kernel_params
def merge(other)
log.info "merging: timeout: #{menue_timeout}=>#{other.menue_timeout}"
log.info " secure_boot: #{secure_boot}=>#{other.secure_boot}"
log.info " mitigations: #{cpu_mitigations}=>#{other.cpu_mitigations}"
log.info " mitigations: #{cpu_mitigations.kernel_value}=>" \
"#{other.cpu_mitigations.kernel_value}"
log.info " kernel_params: #{kernel_params.serialize}=>" \
"#{other.kernel_params.serialize}"
super
Expand All @@ -74,7 +75,7 @@ def merge(other)

log.info "merging result: timeout: #{menue_timeout}"
log.info " secure_boot: #{secure_boot}"
log.info " mitigations: #{cpu_mitigations}"
log.info " mitigations: #{cpu_mitigations.kernel_value}"
log.info " kernel_params: #{kernel_params.serialize}"
end
# rubocop:enable Metrics/AbcSize
Expand Down

0 comments on commit 612f40f

Please sign in to comment.