diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-01-20 13:17:22 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-01-20 13:17:22 +0100 |
commit | e2f3b44cfc8864bfea7c77ff4c383ce9b535f27e (patch) | |
tree | 81dc25605f9493c5f32b596556a3736f55fb9bb0 /src/timer.c | |
parent | f8d0ceb46b8c617abce8eaf99812ca7f4ce1c658 (diff) |
service: when reloading a service fails don't fail the entire service but just the reload job
Diffstat (limited to 'src/timer.c')
-rw-r--r-- | src/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timer.c b/src/timer.c index 6f1f02ddbc..1477aa5256 100644 --- a/src/timer.c +++ b/src/timer.c @@ -152,7 +152,7 @@ static void timer_set_state(Timer *t, TimerState state) { timer_state_to_string(old_state), timer_state_to_string(state)); - unit_notify(UNIT(t), state_translation_table[old_state], state_translation_table[state]); + unit_notify(UNIT(t), state_translation_table[old_state], state_translation_table[state], true); } static void timer_enter_waiting(Timer *t, bool initial); |