summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Fritsch <sf@debian.org>2010-04-03 13:22:52 +0000
committerStefan Fritsch <sf@sfritsch.de>2012-01-02 10:37:08 +0100
commit6527d2f3ce4fec85ae68c114d103f413383564bc (patch)
tree4cd5ef3352dd73f62f10df9928060226197f9c2b
parent03851c1c5ecb6580125275d2615e91c34cd34b8b (diff)
downloadapache2-6527d2f3ce4fec85ae68c114d103f413383564bc.tar.gz
Simplify logrotate script
git-svn-id: svn+ssh://svn.debian.org/svn/pkg-apache/trunk/apache2@1175 01b336ce-410b-0410-9a02-a0e7f243c266
-rw-r--r--debian/changelog6
-rw-r--r--debian/logrotate4
2 files changed, 7 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 209804cd..f8b62e18 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+apache2 (2.2.15-4) UNRELEASED; urgency=low
+
+ * Simplify logrotate script. Closes: #576105
+
+ -- Stefan Fritsch <sf@debian.org> Sat, 03 Apr 2010 15:20:42 +0200
+
apache2 (2.2.15-3) unstable; urgency=low
* mod_reqtimeout: backport bugfixes from upstream trunk up to r928881,
diff --git a/debian/logrotate b/debian/logrotate
index 176550ab..f2dd950b 100644
--- a/debian/logrotate
+++ b/debian/logrotate
@@ -8,8 +8,6 @@
create 640 root adm
sharedscripts
postrotate
- if [ -f "`. /etc/apache2/envvars ; echo ${APACHE_PID_FILE:-/var/run/apache2.pid}`" ]; then
- /etc/init.d/apache2 reload > /dev/null
- fi
+ /etc/init.d/apache2 reload > /dev/null
endscript
}