Merge ~dgadomski/curtin:grub-config-not-subsciptable into curtin:master

Proposed by Dariusz Gadomski
Status: Needs review
Proposed branch: ~dgadomski/curtin:grub-config-not-subsciptable
Merge into: curtin:master
Diff against target: 13 lines (+1/-1)
1 file modified
curtin/commands/curthooks.py (+1/-1)
Reviewer Review Type Date Requested Status
Server Team CI bot continuous-integration Approve
curtin developers Pending
Review via email: mp+466000@code.launchpad.net

Commit message

curthooks: fix deprecated GrubConfig properties syntax

There was a leftover example of accessing GrubConfig properties that has
been removed by commit 4587fd40dfd7eabd6677004e91340edcfe5a7472.

Description of the change

If the user tries to run an automated installation and will set
storage.grub.install_devices most likely they will end up in hitting curtin/commands/curthooks.py:782:
LOG.warn("Storage Config grub device config takes precedence "
                         "over grub 'install_devices' value, ignoring: %s",
                         grubcfg['install_devices'])

This will lead to:
TypeError: 'GrubConfig' object is not subscriptable
'GrubConfig' object is not subscriptable

The syntax used in this line is a pre-refactoring leftover probably skipped by mistake in commit 4587fd40dfd7eabd6677004e91340edcfe5a7472.

To post a comment you must log in.
Revision history for this message
Server Team CI bot (server-team-bot) wrote :
review: Approve (continuous-integration)

Unmerged commits

700b1f8... by Dariusz Gadomski

curthooks: fix deprecated GrubConfig properties syntax

There was a leftover example of accessing GrubConfig properties that has
been removed by commit 4587fd40dfd7eabd6677004e91340edcfe5a7472.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/curtin/commands/curthooks.py b/curtin/commands/curthooks.py
2index 34ff660..264d7d0 100644
3--- a/curtin/commands/curthooks.py
4+++ b/curtin/commands/curthooks.py
5@@ -779,7 +779,7 @@ def setup_grub(
6 grubcfg.install_devices is not grubcfg.install_devices_default:
7 LOG.warn("Storage Config grub device config takes precedence "
8 "over grub 'install_devices' value, ignoring: %s",
9- grubcfg['install_devices'])
10+ grubcfg.install_devices)
11 grubcfg.install_devices = storage_grub_devices
12
13 LOG.debug("install_devices: %s", grubcfg.install_devices)

Subscribers

People subscribed via source and target branches