Saltstack Official Apache Formula
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

45 lines
1.4KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=sls
  3. {%- set tplroot = tpldir.split('/')[0] %}
  4. {%- from tplroot ~ "/map.jinja" import apache with context %}
  5. apache-config-logrotate-file-managed:
  6. file.managed:
  7. - name: {{ apache.logrotatedir }}
  8. - makedirs: True
  9. {%- if grains.os_family == "RedHat" %}
  10. - contents: |
  11. {{ apache.logdir }}/*log {
  12. missingok
  13. notifempty
  14. sharedscripts
  15. delaycompress
  16. postrotate
  17. /bin/systemctl reload {{ apache.service.name }}.service > /dev/null 2>/dev/null || true
  18. endscript
  19. }
  20. {% else %}
  21. - contents: |
  22. {{ apache.logdir }}/*.log {
  23. daily
  24. missingok
  25. rotate 14
  26. compress
  27. delaycompress
  28. notifempty
  29. create 640 root adm
  30. sharedscripts
  31. postrotate
  32. if /etc/init.d/{{ apache.service.name }} status >/dev/null; then \
  33. /etc/init.d/{{ apache.service.name }} reload >/dev/null; \
  34. fi;
  35. endscript
  36. prerotate
  37. if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
  38. run-parts /etc/logrotate.d/httpd-prerotate; \
  39. fi; \
  40. endscript
  41. }
  42. {% endif %}