diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-06-04 16:59:13 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-04 16:59:13 +0200 |
commit | 82d252404a7ee6bd5f24482a0b50a8e91aa93257 (patch) | |
tree | aae3fde8affea0b65ab5e69990828b3d0158419b /src/initctl | |
parent | 7e9f159ca78d4cedc8d9c3276e409a4653a6af69 (diff) |
core: make sure PrivateDevices= makes /dev/log available
Now that we moved the actual syslog socket to
/run/systemd/journal/dev-log we can actually make /dev/log a symlink to
it, when PrivateDevices= is used, thus making syslog available to
services using PrivateDevices=.
Diffstat (limited to 'src/initctl')
-rw-r--r-- | src/initctl/initctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/initctl/initctl.c b/src/initctl/initctl.c index f9a6ed44ed..f3f6f73040 100644 --- a/src/initctl/initctl.c +++ b/src/initctl/initctl.c @@ -383,7 +383,8 @@ int main(int argc, char *argv[]) { umask(0022); - if ((n = sd_listen_fds(true)) < 0) { + n = sd_listen_fds(true); + if (n < 0) { log_error("Failed to read listening file descriptors from environment: %s", strerror(-r)); return EXIT_FAILURE; } |