summaryrefslogtreecommitdiff
path: root/src/core/dbus-service.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-01-28 16:25:39 +0100
committerLennart Poettering <lennart@poettering.net>2016-01-28 16:25:39 +0100
commit1e22b5cda04b6d5e0dd83ab8e6ecb452cf34851f (patch)
tree58d2d9b1596fa7b70259bc93e47c125903a403c1 /src/core/dbus-service.c
parentcd72d2044ad28b475bf84a38ba6db45292467dd8 (diff)
downloadsystemd-1e22b5cda04b6d5e0dd83ab8e6ecb452cf34851f.tar.gz
core: don't reset /dev/console if stdin/stdout/stderr as passed as fd in a transient service
Otherwise we might end resetting /dev/console all the time when a transient service starts or stops. Fixes #2377 Fixes #2198 Fixes #2061
Diffstat (limited to 'src/core/dbus-service.c')
-rw-r--r--src/core/dbus-service.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/dbus-service.c b/src/core/dbus-service.c
index 24f611a593..2529689f5a 100644
--- a/src/core/dbus-service.c
+++ b/src/core/dbus-service.c
@@ -153,6 +153,8 @@ static int bus_service_set_transient_property(
asynchronous_close(s->stderr_fd);
s->stderr_fd = copy;
}
+
+ s->exec_context.stdio_as_fds = true;
}
return 1;