From da153631e70b7335bd657255856fa56ad9c0caad Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Fri, 16 Nov 2007 11:58:41 +0000 Subject: [PATCH] Run the hook_out if set --- src/runscript.c | 8 ++++++++ 1 file changed, 8 insertions(+) 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);