diff options
Diffstat (limited to 'src/core/service.h')
-rw-r--r-- | src/core/service.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/service.h b/src/core/service.h index c78de79a09..2a4dc30d0b 100644 --- a/src/core/service.h +++ b/src/core/service.h @@ -28,6 +28,7 @@ typedef struct Service Service; #include "ratelimit.h" #include "service.h" #include "kill.h" +#include "exit-status.h" typedef enum ServiceState { SERVICE_DEAD, @@ -115,6 +116,8 @@ struct Service { ServiceType type; ServiceRestart restart; + ExitStatusSet restart_ignore_status; + ExitStatusSet success_status; /* If set we'll read the main daemon PID from this file */ char *pid_file; |