You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
F
A quick workaround:
Create a new systemd service:
root@c30:~# cat /etc/systemd/system/lvm-fix.service
[Unit]
Description=Activate all VG volumes (fix)
Before=local-fs.target
[Service]
Type=oneshot
ExecStart=/usr/sbin/vgchange -ay
[Install]
WantedBy=multi-user.target
Enable it:
systemctl...