mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 18:23:32 +08:00
tmpfiles.d: Create /var/lib/containers
Create /var/lib/containers so that it exists with an appropriate mode. We want 0700 by default so that users on the host aren't able to call suid root binaries in the container. This becomes a security issue if a user can enter a container as root, create a suid root binary, and call that from the host. (This assumes that containers are caged by mandatory access control or are started as user).
This commit is contained in:
parent
1fc5560911
commit
797e7a51cd
@ -18,4 +18,6 @@ f /var/log/btmp 0600 root utmp -
|
||||
d /var/cache 0755 - - -
|
||||
|
||||
d /var/lib 0755 - - -
|
||||
d /var/lib/containers 0700 - - -
|
||||
|
||||
d /var/spool 0755 - - -
|
||||
|
Loading…
Reference in New Issue
Block a user