diff options
Diffstat (limited to 'src/unit.h')
-rw-r--r-- | src/unit.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/unit.h b/src/unit.h index d3dd5decd2..b6351d5541 100644 --- a/src/unit.h +++ b/src/unit.h @@ -142,9 +142,6 @@ struct Meta { UnitLoadState load_state; Unit *merged_into; - /* Refuse manual starting, allow starting only indirectly via dependency. */ - bool only_by_dependency; - char *id; /* One name is special because we use it for identification. Points to an entry in the names set */ char *instance; @@ -190,6 +187,12 @@ struct Meta { /* Garbage collect us we nobody wants or requires us anymore */ bool stop_when_unneeded; + /* Refuse manual starting, allow starting only indirectly via dependency. */ + bool only_by_dependency; + + /* Create default depedencies */ + bool default_dependencies; + /* When deserializing, temporarily store the job type for this * unit here, if there was a job scheduled */ int deserialized_job; /* This is actually of type JobType */ |