mirror of
https://github.com/valitydev/salt-common.git
synced 2024-11-07 02:45:21 +00:00
25 lines
528 B
Plaintext
25 lines
528 B
Plaintext
/var/log/salt/minion {
|
|
missingok
|
|
delaycompress
|
|
sharedscripts
|
|
postrotate
|
|
/etc/init.d/salt-minion --ifstarted restart > /dev/null || true
|
|
endscript
|
|
}
|
|
/var/log/salt/master {
|
|
missingok
|
|
delaycompress
|
|
sharedscripts
|
|
postrotate
|
|
/etc/init.d/salt-master --ifstarted restart > /dev/null || true
|
|
endscript
|
|
}
|
|
/var/log/salt/syndic {
|
|
missingok
|
|
delaycompress
|
|
sharedscripts
|
|
postrotate
|
|
/etc/init.d/salt-syndic --ifstarted restart > /dev/null || true
|
|
endscript
|
|
}
|