Forked from
hpc-team / HPCasCode
2019 commits behind the upstream repository.
-
Jupiter Hu authoredJupiter Hu authored
slurmlog.j2 608 B
{{ slurmddebug.log }}/slurm*.log
{
compress
missingok
nocopytruncate
nocreate
nodelaycompress
nomail
notifempty
noolddir
rotate 5
sharedscripts
size=5M
create 640 slurm root
{% if slurmctrl == inventory_hostname %}
{% if ansible_os_family == 'RedHat' and ansible_distribution_version >= '7' %}
systemctl restart slurmdbd
{% else %}
postrotate /etc/init.d/slurmdbd reconfig
{% endif %}
{% endif %}
{% if ansible_os_family == 'RedHat' and ansible_distribution_version >= '7' %}
systemctl restart slurmd
{% else %}
postrotate /etc/init.d/slurm reconfig
{% endif %}
endscript
}