mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-23 17:34:00 +03:00
base-filesystem: pick more conservative access mode for /root/
Let's not allow anyone to look into /root/ if we create it via the base-filesystem logic. i.e. change 0755 → 0750 as default access mode for /root/, in case we create it if it happens to be missing.
This commit is contained in:
parent
6ecc6c4536
commit
93cbc9ca12
@ -31,7 +31,7 @@ typedef struct BaseFilesystem {
|
||||
static const BaseFilesystem table[] = {
|
||||
{ "bin", 0, "usr/bin\0", NULL },
|
||||
{ "lib", 0, "usr/lib\0", NULL },
|
||||
{ "root", 0755, NULL, NULL, true },
|
||||
{ "root", 0750, NULL, NULL, true },
|
||||
{ "sbin", 0, "usr/sbin\0", NULL },
|
||||
{ "usr", 0755, NULL, NULL },
|
||||
{ "var", 0755, NULL, NULL },
|
||||
|
Loading…
Reference in New Issue
Block a user