diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-02-21 02:06:04 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-02-21 02:43:14 +0100 |
commit | 099524d7b0df690e3361ffc3fe3c6aed0558b4fc (patch) | |
tree | 9983d7ff3452ce44a2a8150e124d01e998f8dbd9 /src/core/condition.c | |
parent | a03c5fd2d86c4e3f758a5ca0d98638e5c8bd8d8d (diff) |
core: add new ConditionArchitecture() that checks the architecture returned by uname()'s machine field.
Diffstat (limited to 'src/core/condition.c')
-rw-r--r-- | src/core/condition.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/condition.c b/src/core/condition.c index 658e8d6a4c..1448fa19dc 100644 --- a/src/core/condition.c +++ b/src/core/condition.c @@ -167,6 +167,9 @@ static bool condition_test(Condition *c) { case CONDITION_AC_POWER: return condition_test_ac_power(c); + case CONDITION_ARCHITECTURE: + return condition_test_architecture(c); + case CONDITION_NULL: return !c->negate; |