Merge pull request #4 from zajk/master

Fixed a typo and added RedHat family to map.jinja
This commit is contained in:
Nitin Madhok
2015-05-12 10:22:50 -04:00
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -10,6 +10,11 @@
"config": {
"location": '/etc/sysctl.d',
}
},
'RedHat': {
"config": {
"location": '/etc/sysctl.conf',
}
}
}, grain="os_family")
%}
+1 -1
View File
@@ -9,7 +9,7 @@
sysctl-present-{{ param.name }}:
sysctl.present:
- name: {{ param.name }}
- value: {{ param.version }}
- value: {{ param.value }}
{% if param.config is defined %}
- config: {{ sysctl_settings.config.location }}/{{ param.config }}
{% endif %}