diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-26 01:39:53 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-26 02:26:31 +0100 |
commit | d420282b28f50720e233ccb1c02547c562195653 (patch) | |
tree | 6e03a30a4584bf5345fe7fdc1f551dba5b93458a /src/core/unit.h | |
parent | 02b59d57e0c08231645120077f651151f5bb2bab (diff) |
core: replace OnFailureIsolate= setting by a more generic OnFailureJobMode= setting and make use of it where applicable
Diffstat (limited to 'src/core/unit.h')
-rw-r--r-- | src/core/unit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/unit.h b/src/core/unit.h index fe49b57403..a6dbe8ddbc 100644 --- a/src/core/unit.h +++ b/src/core/unit.h @@ -230,8 +230,8 @@ struct Unit { /* Allow isolation requests */ bool allow_isolate; - /* Isolate OnFailure unit */ - bool on_failure_isolate; + /* How to start OnFailure units */ + JobMode on_failure_job_mode; /* Ignore this unit when isolating */ bool ignore_on_isolate; |