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/manager.c | |
parent | cfcab435088205b520d244e6111e33b98579181d (diff) |
manager: introduce IgnoreOnIsolate flag so that we can keep systemd-logger around when isolating
Diffstat (limited to 'src/manager.c')
-rw-r--r-- | src/manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manager.c b/src/manager.c index e723a1e4ef..dfd33b08f4 100644 --- a/src/manager.c +++ b/src/manager.c @@ -1619,7 +1619,7 @@ static int transaction_add_isolate_jobs(Manager *m) { if (u->meta.id != k) continue; - if (UNIT_VTABLE(u)->no_isolate) + if (u->meta.ignore_on_isolate) continue; /* No need to stop inactive jobs */ |