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/unit.h | |
parent | cfcab435088205b520d244e6111e33b98579181d (diff) |
manager: introduce IgnoreOnIsolate flag so that we can keep systemd-logger around when isolating
Diffstat (limited to 'src/unit.h')
-rw-r--r-- | src/unit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unit.h b/src/unit.h index 2c5cacd9e3..43bbe67573 100644 --- a/src/unit.h +++ b/src/unit.h @@ -210,6 +210,9 @@ struct Meta { /* Isolate OnFailure unit */ bool on_failure_isolate; + /* Ignore this unit when isolating */ + bool ignore_on_isolate; + /* Did the last condition check suceed? */ bool condition_result; @@ -367,9 +370,6 @@ struct UnitVTable { /* Exclude from automatic gc */ bool no_gc:1; - /* Exclude from stopping on isolation requests */ - bool no_isolate:1; - /* Show status updates on the console */ bool show_status:1; }; |