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
remount-fs: do not remount filesystem to match fstab if something different is mounted
As reported in ostreedev/ostree#3193, when the system
has mounted a different file system on "/" than what is configured in
/etc/fstab, we still try to execute "mount -o remount /", and that fails because
the filesystem that is actually mounted doesn't know about the options relevant
for the filesystem listed in /etc/fstab. I don't think it's useful to try to
apply options from /etc/fstab if the file system type or device are different.
In fact, it could be dangerous or destructive. If the user mounted something
different than what the fstab specifies, no matter by what means, we should leave
that mount point alone.
If the filesystem is (potentially) multi-device, we only require the file
system type to match.
0 commit comments