Merge pull request #15 from saltstack-formulas/revert-13-remove-redundant-map-entries

Revert "Remove redundant entries from map.jinja file"
This commit is contained in:
Wolodja Wentland 2016-04-27 16:13:07 +02:00
commit fa7a4e79eb
1 changed files with 11 additions and 0 deletions

View File

@ -16,6 +16,11 @@
{## setup variable using grains['os_family'] based logic ##} {## setup variable using grains['os_family'] based logic ##}
{% set os_family_map = salt['grains.filter_by']({ {% set os_family_map = salt['grains.filter_by']({
'Arch': {
"config": {
"location": '/etc/sysctl.d',
}
},
'RedHat': { 'RedHat': {
"config": { "config": {
"location": '/etc/sysctl.conf', "location": '/etc/sysctl.conf',
@ -23,9 +28,15 @@
}, },
'Suse': { 'Suse': {
"pkg": "procps", "pkg": "procps",
"config": {
"location": '/etc/sysctl.d',
}
}, },
'Debian': { 'Debian': {
"pkg": "procps", "pkg": "procps",
"config": {
"location": '/etc/sysctl.d',
}
}, },
}, },
grain="os_family", grain="os_family",