summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2025-05-06 15:20:06 +0100
committerGitHub <noreply@github.com>2025-05-06 15:20:06 +0100
commita2242a3ba08506b2e8cd8118732230746c08a41b (patch)
tree45486639652fed5ae6fac84c8494a6c99ec2673c /src
parenta0805e37e1f3935cb1cb016082797b4e664bb920 (diff)
parent56dc22bd87f5add0428d33ebf225c95803b3a7d2 (diff)
downloadvyos-1x-a2242a3ba08506b2e8cd8118732230746c08a41b.tar.gz
vyos-1x-a2242a3ba08506b2e8cd8118732230746c08a41b.zip
Merge pull request #4387 from woodsb02/patch-1
installer: T7049: Fix GRUB boot with RAID1
Diffstat (limited to 'src')
-rwxr-xr-xsrc/op_mode/image_installer.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/op_mode/image_installer.py b/src/op_mode/image_installer.py
index 150ae57d3..ac5a84419 100755
--- a/src/op_mode/image_installer.py
+++ b/src/op_mode/image_installer.py
@@ -922,8 +922,7 @@ def install_image() -> None:
for disk_target in l:
disk.partition_mount(disk_target.partition['efi'], f'{DIR_DST_ROOT}/boot/efi')
grub.install(disk_target.name, f'{DIR_DST_ROOT}/boot/',
- f'{DIR_DST_ROOT}/boot/efi',
- id=f'VyOS (RAID disk {l.index(disk_target) + 1})')
+ f'{DIR_DST_ROOT}/boot/efi')
disk.partition_umount(disk_target.partition['efi'])
else:
print('Installing GRUB to the drive')