diff options
author | cqst <not@important> | 2025-05-08 02:28:14 -0700 |
---|---|---|
committer | cqst <not@important> | 2025-05-08 02:28:58 -0700 |
commit | e084b06dc767af37870b05139598b56a41872d1f (patch) | |
tree | d1a26e27c736ec8112a87aea067710f6b540817a | |
parent | 2cea8517f3b6c7f72cdecbcd3e6745db29284852 (diff) |
fix trying to boot all logical volumes after unlocking an encrypted volume
-rw-r--r-- | config/grub/default/config/payload | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/grub/default/config/payload b/config/grub/default/config/payload index 3f134f1d..3d84413e 100644 --- a/config/grub/default/config/payload +++ b/config/grub/default/config/payload @@ -184,7 +184,7 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o # using * is slow on some machines, but we use it here, # just once. in so doing, we find every lvm volume for vol in (*); do - if regexp ^lvm/ $vol; then + if regexp ^\\(lvm/ $vol; then lvmvol="${lvmvol} ${vol}" try_bootcfg "${vol}" fi |