Saltstack Official Apache Formula
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

27 linhas
747B

  1. {% from "apache/map.jinja" import apache with context %}
  2. {{ apache.logrotatedir }}:
  3. file:
  4. - managed
  5. - contents: |
  6. {{ apache.logdir }}/*.log {
  7. daily
  8. missingok
  9. rotate 14
  10. compress
  11. delaycompress
  12. notifempty
  13. create 640 root adm
  14. sharedscripts
  15. postrotate
  16. if /etc/init.d/{{ apache.service }} status > /dev/null ; then \
  17. /etc/init.d/{{ apache.service }} reload > /dev/null; \
  18. fi;
  19. endscript
  20. prerotate
  21. if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
  22. run-parts /etc/logrotate.d/httpd-prerotate; \
  23. fi; \
  24. endscript
  25. }