diff options
author | June McEnroe <june@causal.agency> | 2020-08-15 15:29:58 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-08-15 15:29:58 -0400 |
commit | 92d27e09c3a6c66e6a14b35a3666a04eaa54813a (patch) | |
tree | 046ee579b3a5a189ce7d9d3c6cde6757537439e3 /daemon.h | |
parent | Parse control commands (diff) | |
download | catsit-92d27e09c3a6c66e6a14b35a3666a04eaa54813a.tar.gz catsit-92d27e09c3a6c66e6a14b35a3666a04eaa54813a.zip |
Implement service status
Diffstat (limited to '')
-rw-r--r-- | daemon.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/daemon.h b/daemon.h index b8b288b..b8bcb9b 100644 --- a/daemon.h +++ b/daemon.h @@ -129,6 +129,7 @@ extern struct Services { } services; int serviceAdd(const char *name, const char *command); +void serviceStatus(struct Service *service); void serviceStart(struct Service *service); void serviceStop(struct Service *service); void serviceRestart(struct Service *service); |