123456789101112131415161718192021222324252627 |
- {% if ansible_controlled is defined and ansible_controlled != "" %}
- #
- # {{ ansible_controlled }}
- #
- {% endif %}
- /var/log/apache2/*.log {
- daily
- missingok
- rotate 1000
- dateext
- dateyesterday
- compress
- delaycompress
- notifempty
- create 0640 www-data adm
- sharedscripts
- postrotate
- 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
- }
|