Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bind mount the system Flatpak directory at runtime
For what it's worth, this does alter the mount propagation flags by adding 'slave'. Earlier with 'podman create --volume ...' it was: $ findmnt -o OPTIONS,PROPAGATION /var/lib/flatpak OPTIONS PROPAGATION ro,relatime,seclabel private Now with 'mount --bind -o ro ...' it is: $ findmnt -o OPTIONS,PROPAGATION /var/lib/flatpak OPTIONS PROPAGATION ro,relatime,seclabel private,slave This difference was ignored because it doesn't appear to cause any real problem. #327
- Loading branch information