소스 검색

Added state for configuring logrotate

tags/v0.37.4
Bogdan Radulescu 9 년 전
부모
커밋
d7b28dd4fb
1개의 변경된 파일24개의 추가작업 그리고 0개의 파일을 삭제
  1. +24
    -0
      apache/logrotate.sls

+ 24
- 0
apache/logrotate.sls 파일 보기

@@ -0,0 +1,24 @@
/etc/logrotate.d/apache2:
file:
- managed
- contents: |
/var/log/apache2/*.log {
daily
missingok
rotate 14
compress
delaycompress
notifempty
create 640 root 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
}

Loading…
취소
저장