From decff50878e2defcf655343cd16409e2fb335682 Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: Aug 03 2016 17:50:08 +0000 Subject: Ticket 48932 - stopping admin server stops all httpd processes Bug Description: When stopping the admin server it does not specify which process/config file to stop. So all httpd services are stopped. Fix Description: In the systemd wrapper specify the admin's http.conf file for the ExecStop command. https://fedorahosted.org/389/ticket/48932 Reviewed by: nhosoi(Thanks!) --- diff --git a/wrappers/systemd.service.in b/wrappers/systemd.service.in index 186e851..394047a 100644 --- a/wrappers/systemd.service.in +++ b/wrappers/systemd.service.in @@ -16,7 +16,7 @@ EnvironmentFile=@initconfigdir@/@package_name@ ExecStart=@HTTPD@ -k start -f @configdir@/httpd.conf ExecReload=@HTTPD@ -t ExecReload=/bin/kill -HUP $MAINPID -ExecStop=@HTTPD@ $OPTIONS -k stop +ExecStop=@HTTPD@ $OPTIONS -k stop -f @configdir@/httpd.conf # to raise the file descriptor limit # LimitNOFILE=8192