Vanilla-OS / ABRoot

ABRoot is a utility that provides full immutability and atomicity to a Linux system, by transacting between two root filesystems. Updates are performed using OCI images, to ensure that the system is always in a consistent state.
http://abroot.vanillaos.org/
GNU General Public License v3.0
309 stars 24 forks source link

fix [#302]: creates symlinks back to root #303

Closed taukakao closed 4 months ago

taukakao commented 4 months ago

Symlinks that point to specific folders on the root like /etc/mtab, which points to ../proc/self/mounts are broken because they would point to /.system/proc/... which does not contain the relevant information.

This PR points them back to /proc, /run and so on to prevent these issues.

Tested in a VM.

Fixes #302