diff options
author | Tollef Fog Heen <tfheen@err.no> | 2011-04-23 22:06:18 +0200 |
---|---|---|
committer | Tollef Fog Heen <tfheen@err.no> | 2011-04-23 22:06:18 +0200 |
commit | 3a90ae048233021833ae828c1fc6bf0eeab46197 (patch) | |
tree | 2855a0e3652e6781289b4c9c1f4d3ac2a8fd918f | |
parent | 8f28cbcdfe55bdaaa3e8f9c68f39b1369dd0e5dd (diff) |
manager: mkdir /run/systemd/system when starting up
-rw-r--r-- | src/mount-setup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mount-setup.c b/src/mount-setup.c index db5c253708..77be8fead8 100644 --- a/src/mount-setup.c +++ b/src/mount-setup.c @@ -257,6 +257,7 @@ int mount_setup(void) { /* Create a few directories we always want around */ mkdir("/run/systemd", 0755); + mkdir("/run/systemd/system", 0755); return mount_cgroup_controllers(); } |