Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow customization of a postrotate script #153

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions bind/files/debian/logrotate_bind
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
{%- set user = salt['pillar.get']('bind:config:user', map.user) %}
{%- set group = salt['pillar.get']('bind:config:group', map.group) %}
{%- set mode = salt['pillar.get']('bind:config:log_mode', map.log_mode) %}
{%- set postrotate = salt['pillar.get']('bind:logrotate:postrotate_script', "") %}
{{ map.log_dir }}/*.log {
rotate 7
daily
missingok
notifempty
sharedscripts
{%- if postrotate != "" %}
postrotate
{{ postrotate }}
endscript
{%- endif %}
copytruncate
compress
create {{ mode }} {{ user }} {{ group }}
Expand Down
3 changes: 3 additions & 0 deletions pillar.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
### Overrides for the defaults specified by ###
### map.jinja ###
bind:
logrotate:
postrotate_script: >
rndc reconfig &>/dev/null || true
lookup:
pkgs:
- bind # Need to install
Expand Down