diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-09 17:18:18 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-09 17:20:32 +0200 |
commit | 417800228f69db9ff37f4193d11508757dd09308 (patch) | |
tree | 6d03c9d5d3391283e37a6e44d2a34263678f7cbb /src/core/slice.c | |
parent | c463a6f1c4d375929a99ac258292ce5e1f64a835 (diff) |
core: ignore -.slice and init.scope when isolating
Otherwise, we might end up trying to isolate it away when starting user
instances.
While we are at it, also prohibit manual start/stop of these two units.
Fixes: #1507
Diffstat (limited to 'src/core/slice.c')
-rw-r--r-- | src/core/slice.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/slice.c b/src/core/slice.c index 063024134a..1542e83eb6 100644 --- a/src/core/slice.c +++ b/src/core/slice.c @@ -274,6 +274,9 @@ static int slice_enumerate(Manager *m) { u->default_dependencies = false; u->no_gc = true; + u->ignore_on_isolate = true; + u->refuse_manual_start = true; + u->refuse_manual_stop = true; SLICE(u)->deserialized_state = SLICE_ACTIVE; if (!u->description) |