diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2011-11-19 02:47:09 +0100 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2011-11-19 03:16:55 +0100 |
commit | f6cebb3bd5a00d79c8131637c0f6796a75e6af99 (patch) | |
tree | 562f7e536ab96598a77e4d16061f04ffe50c8ace /src/mount.c | |
parent | 1a4459d63323cdfdb8751077e555ddbbf80564b1 (diff) |
let mount and swap units log to the configured defaults
Related-to: https://bugzilla.redhat.com/show_bug.cgi?id=750032
Diffstat (limited to 'src/mount.c')
-rw-r--r-- | src/mount.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mount.c b/src/mount.c index f9cfe910a0..47422ccf8b 100644 --- a/src/mount.c +++ b/src/mount.c @@ -68,8 +68,10 @@ static void mount_init(Unit *u) { /* The stdio/kmsg bridge socket is on /, in order to avoid a * dep loop, don't use kmsg logging for -.mount */ - if (!unit_has_name(u, "-.mount")) - m->exec_context.std_output = EXEC_OUTPUT_KMSG; + if (!unit_has_name(u, "-.mount")) { + m->exec_context.std_output = u->meta.manager->default_std_output; + m->exec_context.std_error = u->meta.manager->default_std_error; + } /* We need to make sure that /bin/mount is always called in * the same process group as us, so that the autofs kernel |