summaryrefslogtreecommitdiff
path: root/src/unit.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-05-05 10:58:55 +0200
committerLennart Poettering <lennart@poettering.net>2011-05-05 10:58:55 +0200
commit7a6000a68241d23c9f6f6bde47b2cfa9c18189da (patch)
tree76fb3e89d3fa2caf4425e987197d2371563c1b1d /src/unit.h
parenta96257af783f1d2c35a957466856e62ebf82bcad (diff)
unit: make ignoring in snapshots a per unit property, instead of a per unit type property
Diffstat (limited to 'src/unit.h')
-rw-r--r--src/unit.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unit.h b/src/unit.h
index 43bbe67573..717c928075 100644
--- a/src/unit.h
+++ b/src/unit.h
@@ -213,6 +213,9 @@ struct Meta {
/* Ignore this unit when isolating */
bool ignore_on_isolate;
+ /* Ignore this unit when snapshotting */
+ bool ignore_on_snapshot;
+
/* Did the last condition check suceed? */
bool condition_result;
@@ -364,9 +367,6 @@ struct UnitVTable {
/* Instances make no sense for this type */
bool no_instances:1;
- /* Exclude this type from snapshots */
- bool no_snapshots:1;
-
/* Exclude from automatic gc */
bool no_gc:1;