]> git.donarmstrong.com Git - dsa-puppet.git/commitdiff
apache2.logrotate: rebase onto jessie
authorPeter Palfrader <peter@palfrader.org>
Mon, 27 Apr 2015 14:36:38 +0000 (16:36 +0200)
committerPeter Palfrader <peter@palfrader.org>
Mon, 27 Apr 2015 14:36:43 +0000 (16:36 +0200)
modules/apache2/files/apache2.logrotate

index 9dd2f057ac07ed6cd884c36f05facf759addc7e6..bc28f44b31c97bb540ab6335f1420272d35d0441 100644 (file)
        create 644 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
+                if /etc/init.d/apache2 status > /dev/null ; then \
+                    /etc/init.d/apache2 reload > /dev/null; \
+                fi;
+       endscript
+       prerotate
+               if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+                       run-parts /etc/logrotate.d/httpd-prerotate; \
+               fi; \
        endscript
 }