diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-06-15 15:34:19 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-06-21 19:29:45 +0200 |
commit | 5f4b19f4bc4b6e747ca19f53ef33a167ecf9ac0b (patch) | |
tree | 06c64e2b9a728fe34c8219ea5040e9b130d02849 /src/unit.h | |
parent | 8d0e38a2b966799af884e78a54fd6a2dffa44788 (diff) |
service: check whether sysv scripts where changed
Diffstat (limited to 'src/unit.h')
-rw-r--r-- | src/unit.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/unit.h b/src/unit.h index 1c8cf63870..79f15103ba 100644 --- a/src/unit.h +++ b/src/unit.h @@ -317,6 +317,9 @@ struct UnitVTable { void (*sigchld_event)(Unit *u, pid_t pid, int code, int status); void (*timer_event)(Unit *u, uint64_t n_elapsed, Watch *w); + /* Check whether unit needs a daemon reload */ + bool (*need_daemon_reload)(Unit *u); + /* Reset failed state if we are in failed state */ void (*reset_failed)(Unit *u); |