diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-06-25 12:15:07 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-07-17 23:41:10 -0400 |
commit | 4b744dfabebd10bf0f13b64060f44b1bd6c82704 (patch) | |
tree | 0f7f24600bdd026c439b6b36b62c2a0684ad5832 /src/core/unit.c | |
parent | d121b396ccb19dc33aacfc75a7f7a719914267c8 (diff) |
systemd: log failed conditions
ConditionPathExists=/tmp/nosuchpath failed for nosuchpath.service.
Diffstat (limited to 'src/core/unit.c')
-rw-r--r-- | src/core/unit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/unit.c b/src/core/unit.c index f4f92f0fca..a201fa4041 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -996,7 +996,7 @@ bool unit_condition_test(Unit *u) { assert(u); dual_timestamp_get(&u->condition_timestamp); - u->condition_result = condition_test_list(u->conditions); + u->condition_result = condition_test_list(u->id, u->conditions); return u->condition_result; } |