summaryrefslogtreecommitdiff
path: root/src/device.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-04-14 03:55:03 +0200
committerLennart Poettering <lennart@poettering.net>2011-04-16 02:03:34 +0200
commitc8f4d7642b743c79328e10e8fb2d9b58e9f6b999 (patch)
treebb1acede258a78bbbb485dc3fe99c4b27a72916d /src/device.c
parentcfcab435088205b520d244e6111e33b98579181d (diff)
manager: introduce IgnoreOnIsolate flag so that we can keep systemd-logger around when isolating
Diffstat (limited to 'src/device.c')
-rw-r--r--src/device.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/device.c b/src/device.c
index 41c96cef0..d507b701f 100644
--- a/src/device.c
+++ b/src/device.c
@@ -70,6 +70,8 @@ static void device_init(Unit *u) {
* happen for the other units since their operations time out
* anyway. */
d->meta.job_timeout = DEFAULT_TIMEOUT_USEC;
+
+ d->meta.ignore_on_isolate = true;
}
static void device_done(Unit *u) {
@@ -583,7 +585,6 @@ const UnitVTable device_vtable = {
.no_instances = true,
.no_snapshots = true,
- .no_isolate = true,
.init = device_init,