summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Wiebalck <Arne.Wiebalck@cern.ch>2021-10-08 08:11:48 +0200
committerArne Wiebalck <Arne.Wiebalck@cern.ch>2021-10-21 14:10:26 +0200
commit5898a9301d5210f7047713ec6519fe4d8f7ca5cf (patch)
treeb1357622347f7ca5e2fd4858841c154ce8e06525
parenta0c55b917bb4ecabd75cbdb3224187a09c427500 (diff)
downloadironic-python-agent-5898a9301d5210f7047713ec6519fe4d8f7ca5cf.tar.gz
Assert EFI part UUID is not None before editing fstab
The EFI partition UUID may be None and this will break the fstab editing. While this is not necessarily fatal when instantiating a node, it creates an exception at the end of bootloader installation, so only attempt to add a line to fstab when the UUID is not None. Change-Id: I68799980e67c05afe4ca68ca9733605dd166d54d (cherry picked from commit 333ed70c94e366f16d8f2633f74a5ef05aa5fadb)
-rw-r--r--ironic_python_agent/extensions/image.py2
-rw-r--r--releasenotes/notes/fix_efi_uuid_fstab-f2edbee9bfbac64a.yaml6
2 files changed, 7 insertions, 1 deletions
diff --git a/ironic_python_agent/extensions/image.py b/ironic_python_agent/extensions/image.py
index 1d439923..a09cb140 100644
--- a/ironic_python_agent/extensions/image.py
+++ b/ironic_python_agent/extensions/image.py
@@ -760,7 +760,7 @@ def _install_grub2(device, root_uuid, efi_system_part_uuid=None,
# recommended path.
_configure_grub(device, path)
- if efi_mounted:
+ if efi_system_part_uuid and efi_mounted:
_append_uefi_to_fstab(path, efi_system_part_uuid)
LOG.info("GRUB2 successfully installed on %s", device)
diff --git a/releasenotes/notes/fix_efi_uuid_fstab-f2edbee9bfbac64a.yaml b/releasenotes/notes/fix_efi_uuid_fstab-f2edbee9bfbac64a.yaml
new file mode 100644
index 00000000..77d64ce0
--- /dev/null
+++ b/releasenotes/notes/fix_efi_uuid_fstab-f2edbee9bfbac64a.yaml
@@ -0,0 +1,6 @@
+---
+fixes:
+ - |
+ Fixes an issue when the EFI partition UUID is not set and an attempt
+ to edit /etc/fstab is made.
+