diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-04-04 16:56:51 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-04-04 16:58:23 +0200 |
commit | 3bbecb2f2cd758e2513993efad01180c7c3c665f (patch) | |
tree | 06f076c37810747023d7f878b4efe2b8dc84445a /src/mount-setup.c | |
parent | 9d8677dad260d7dc20146f8affe3d376daff7c19 (diff) |
selinux: relabel /run the same way as /dev after loading the policy since they both come pre-filled and unlabelled
Diffstat (limited to 'src/mount-setup.c')
-rw-r--r-- | src/mount-setup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mount-setup.c b/src/mount-setup.c index 49eab0bfa7..a42ed43957 100644 --- a/src/mount-setup.c +++ b/src/mount-setup.c @@ -243,8 +243,10 @@ int mount_setup(void) { * appropriate labels, after mounting. The other virtual API * file systems do not need. */ - if (unlink("/dev/.systemd-relabel-devtmpfs") >= 0) + if (unlink("/dev/.systemd-relabel-run-dev") >= 0) { nftw("/dev", nftw_cb, 64, FTW_MOUNT|FTW_PHYS); + nftw("/run", nftw_cb, 64, FTW_MOUNT|FTW_PHYS); + } /* Create a few default symlinks, which are normally created * bei udevd, but some scripts might need them before we start |