ソースを参照

Added state for configuring logrotate

master
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
}

読み込み中…
キャンセル
保存