chiark / gitweb /
let mount and swap units log to the configured defaults
authorMichal Schmidt <mschmidt@redhat.com>
Sat, 19 Nov 2011 01:47:09 +0000 (02:47 +0100)
committerMichal Schmidt <mschmidt@redhat.com>
Sat, 19 Nov 2011 02:16:55 +0000 (03:16 +0100)
Related-to: https://bugzilla.redhat.com/show_bug.cgi?id=750032
src/mount.c
src/swap.c

index f9cfe910a07c5195985ec8c46706fb6f680c6789..47422ccf8bafc4a59e9b2af5f3f6ea4041f11f43 100644 (file)
@@ -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
index 54a8640aa4948e86e316579f25f56051bf4b7e65..4fa30a3e325f57e3be95692daa247de36dd9ef85 100644 (file)
@@ -74,7 +74,7 @@ static void swap_unset_proc_swaps(Swap *s) {
         s->parameters_proc_swaps.what = NULL;
 }
 
- static void swap_init(Unit *u) {
+static void swap_init(Unit *u) {
         Swap *s = SWAP(u);
 
         assert(s);
@@ -83,7 +83,8 @@ static void swap_unset_proc_swaps(Swap *s) {
         s->timeout_usec = DEFAULT_TIMEOUT_USEC;
 
         exec_context_init(&s->exec_context);
-        s->exec_context.std_output = EXEC_OUTPUT_KMSG;
+        s->exec_context.std_output = u->meta.manager->default_std_output;
+        s->exec_context.std_error = u->meta.manager->default_std_error;
 
         s->parameters_etc_fstab.priority = s->parameters_proc_swaps.priority = s->parameters_fragment.priority = -1;