aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/runscript.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/runscript.c b/src/runscript.c
index c0a01999..3683080e 100644
--- a/src/runscript.c
+++ b/src/runscript.c
@@ -600,6 +600,10 @@ static void svc_start (bool deps)
if (state & RC_SERVICE_STARTED) {
ewarn ("WARNING: %s has already been started", applet);
+ if (hook_out) {
+ hook_out = 0;
+ rc_plugin_run (hook_out)
+ }
return;
} else if (state & RC_SERVICE_STARTING)
ewarnx ("WARNING: %s is already starting", applet);
@@ -813,6 +817,10 @@ static void svc_stop (bool deps)
if (state & RC_SERVICE_STOPPED) {
ewarn ("WARNING: %s is already stopped", applet);
+ if (hook_out) {
+ hook_out = 0;
+ rc_plugin_run (hook_out)
+ }
return;
} else if (state & RC_SERVICE_STOPPING)
ewarnx ("WARNING: %s is already stopping", applet);