You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happens because systemd interferes with mount -a and unmounts the mountpoint specifies in /etc/fstab:
systemd[1]: dev-xvdz.device: Job dev-xvdz.device/start timed out.
systemd[1]: Timed out waiting for device /dev/xvdz.
The device name /dev/xvdz is a symlink that we create in cloudinit code to the actual device node. This apparently breaks systemd logic and it starts to unmount the device immediately even when we mount it manually after this.
Address this by disabling this systemd mount "helper" behavior.
The text was updated successfully, but these errors were encountered:
This happens because systemd interferes with
mount -a
and unmounts the mountpoint specifies in/etc/fstab
:The device name /dev/xvdz is a symlink that we create in cloudinit code to the actual device node. This apparently breaks systemd logic and it starts to unmount the device immediately even when we mount it manually after this.
Address this by disabling this systemd mount "helper" behavior.
The text was updated successfully, but these errors were encountered: