diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-04-14 03:55:03 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-04-16 02:03:34 +0200 |
commit | c8f4d7642b743c79328e10e8fb2d9b58e9f6b999 (patch) | |
tree | bb1acede258a78bbbb485dc3fe99c4b27a72916d /src/mount.c | |
parent | cfcab435088205b520d244e6111e33b98579181d (diff) |
manager: introduce IgnoreOnIsolate flag so that we can keep systemd-logger around when isolating
Diffstat (limited to 'src/mount.c')
-rw-r--r-- | src/mount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mount.c b/src/mount.c index d7a300e796..2b19f497f3 100644 --- a/src/mount.c +++ b/src/mount.c @@ -80,6 +80,8 @@ static void mount_init(Unit *u) { m->timer_watch.type = WATCH_INVALID; m->control_command_id = _MOUNT_EXEC_COMMAND_INVALID; + + m->meta.ignore_on_isolate = true; } static void mount_unwatch_control_pid(Mount *m) { @@ -1763,7 +1765,6 @@ const UnitVTable mount_vtable = { .no_alias = true, .no_instances = true, - .no_isolate = true, .show_status = true, .init = mount_init, |