diff options
author | Friedrich Weber <56110206+frwbr@users.noreply.github.com> | 2025-04-01 23:07:46 +0000 |
---|---|---|
committer | Tony Hutter <hutter2@llnl.gov> | 2025-05-27 21:57:17 +0000 |
commit | 79cbdb3703056a0b34b23a5a0bda8c4ce1999250 (patch) | |
tree | ea4ae1c5a836af40dd95975d9c69fe324b0a12b2 | |
parent | 3d087fde6e96acc48e095b9a2776f869c708afe4 (diff) |
-rwxr-xr-x | contrib/initramfs/scripts/local-top/zfs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/initramfs/scripts/local-top/zfs b/contrib/initramfs/scripts/local-top/zfs index 6b80e9f43607..fc455077ec94 100755 --- a/contrib/initramfs/scripts/local-top/zfs +++ b/contrib/initramfs/scripts/local-top/zfs @@ -41,9 +41,9 @@ activate_vg() return 1 fi - # Detect and activate available volume groups + # Detect and auto-activate available volume groups /sbin/lvm vgscan - /sbin/lvm vgchange -a y --sysinit + /sbin/lvm vgchange -aay --sysinit return $? } |