From: Lebbeous Fogle-Weekley Date: Thu, 30 Jan 2014 23:32:24 +0000 (-0500) Subject: LP#1286198: When doing router-specific things, we don't need as much configuration... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=82f19d82a316919e76bf5349272022a309872a01;p=working%2FOpenSRF.git LP#1286198: When doing router-specific things, we don't need as much configuration loaded Signed-off-by: Lebbeous Fogle-Weekley Signed-off-by: Mike Rylander Signed-off-by: Galen Charlton --- diff --git a/bin/opensrf-perl.pl.in b/bin/opensrf-perl.pl.in index d5961da..a939efe 100755 --- a/bin/opensrf-perl.pl.in +++ b/bin/opensrf-perl.pl.in @@ -749,13 +749,13 @@ exit; # we do not verify services for stop/signal actions, since those may # legitimately be used against services not (or no longer) configured # to run on the selected host. -do_init() and verify_services($opt_service) if - $opt_start or +do_init() and verify_services($opt_service) if + ($opt_start or $opt_start_all or $opt_start_services or $opt_restart or $opt_restart_all or - $opt_restart_services; + $opt_restart_services) and $opt_service ne 'router'; # starting services. do_init() handled above do_start($opt_service) if $opt_start;