1
0
Fork 0
formula-logrotate/logrotate/map.jinja

43 lines
1.4 KiB
Plaintext
Raw Normal View History

2015-01-01 13:52:08 -05:00
{% set logrotate = salt['grains.filter_by']({
'RedHat': {
'pkg' : 'logrotate',
'service' : 'crond',
2015-01-01 13:52:08 -05:00
'conf_file' : '/etc/logrotate.conf',
2017-02-08 17:57:08 -05:00
'include_dir' : '/etc/logrotate.d',
'user' : 'root',
'group' : 'root',
},
'ScientificLinux': {
'pkg' : 'logrotate',
'service' : 'crond',
'conf_file' : '/etc/logrotate.conf',
2015-01-01 13:52:08 -05:00
'include_dir' : '/etc/logrotate.d',
'user' : 'root',
'group' : 'root',
},
'Arch': {
'pkg' : 'logrotate',
'service' : 'logrotate.timer',
'conf_file' : '/etc/logrotate.conf',
'include_dir' : '/etc/logrotate.d',
'user' : 'root',
'group' : 'root',
},
'Debian': {
'pkg' : 'logrotate',
'service' : 'cron',
2015-01-01 13:52:08 -05:00
'conf_file' : '/etc/logrotate.conf',
'include_dir' : '/etc/logrotate.d',
'user' : 'root',
'group' : 'root',
},
2015-03-07 05:27:15 -05:00
'Suse': {
'pkg' : 'logrotate',
'service' : 'cron',
'conf_file' : '/etc/logrotate.conf',
'include_dir' : '/etc/logrotate.d',
'user' : 'root',
'group' : 'root',
},
}, merge=salt['pillar.get']('logrotate:lookup')) %}