X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Funit.h;h=717c928075589f860152f0d91ea99c773d65ddb6;hb=572481b9094f7f1fbba69f1bd0c8f7db31550b01;hp=9b7eb5e854ca3c8bc0c59336f7418734e24e2760;hpb=90bbc9469ec29b6094dadf27aa88743d44ab56e7;p=elogind.git diff --git a/src/unit.h b/src/unit.h index 9b7eb5e85..717c92807 100644 --- a/src/unit.h +++ b/src/unit.h @@ -40,9 +40,6 @@ typedef enum UnitDependency UnitDependency; #include "execute.h" #include "condition.h" -#define DEFAULT_TIMEOUT_USEC (3*USEC_PER_MINUTE) -#define DEFAULT_RESTART_USEC (100*USEC_PER_MSEC) - enum UnitType { UNIT_SERVICE = 0, UNIT_SOCKET, @@ -210,6 +207,15 @@ struct Meta { /* Allow isolation requests */ bool allow_isolate; + /* Isolate OnFailure unit */ + bool on_failure_isolate; + + /* 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; @@ -361,15 +367,9 @@ 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; - /* Exclude from stopping on isolation requests */ - bool no_isolate:1; - /* Show status updates on the console */ bool show_status:1; };