From 4903435659fd8407f7619915c8470e6aea486e27 Mon Sep 17 00:00:00 2001 From: boyska Date: Fri, 10 Aug 2018 10:12:06 +0200 Subject: [PATCH] docker ttrss: openrc properly kills apache --- docker/ttrss-openrc-apache | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/ttrss-openrc-apache b/docker/ttrss-openrc-apache index 291502d..581db74 100755 --- a/docker/ttrss-openrc-apache +++ b/docker/ttrss-openrc-apache @@ -12,5 +12,7 @@ stop() { ebegin "Stopping Apache (with wrapper)" start-stop-daemon --stop --exec /bootstrap/start.sh \ --pidfile /var/run/apache-start.pid + start-stop-daemon --stop --exec httpd \ + --pidfile /var/run/apache2/httpd.pid eend $? }