Files
Matthias FRANCK 94fed79b6b procd: add patch to mount sys and proc with relatime option
Lxc automatically mounts sys and proc in the rootfs of the container. When an unprivileged container is created however, the sys and proc of the host should be mounted with option relatime. The procd of openwrt mounts these with option noatime. As a result, an unprivileged container cannot start.

remounting them allows starting of the containers:
mount -t sys sys -o remount,rw,nosuid,nodev,noexec,relatime /sys
mount -t proc proc -o remount,rw,nosuid,nodev,noexec,relatime /proc

The patch modifies procd to do this correctly from the start.

Issue: LCMFT-338 for unprivileged lxc containers, proc and sys should be mounted with relatime
Signed-off-by: Matthias FRANCK <matthias.franck@softathome.com>
2025-02-13 14:00:21 +01:00
..
2019-11-14 22:53:31 +01:00
2023-08-11 12:53:33 +02:00
2023-09-18 14:25:18 +02:00
2020-05-24 17:01:36 +02:00
2023-08-11 12:53:34 +02:00
2023-11-01 22:22:45 +01:00