mirror of
https://github.com/saltstack-formulas/nfs-formula.git
synced 2025-04-17 10:10:31 +00:00
Add support for Amazon, CentOS, RedHat Linux
Line 42 of map.jinja {% set nfs = map.get(grains.os) %} does not allow pillar lookups!
This commit is contained in:
parent
69b2c17a16
commit
589d53d97f
1 changed files with 15 additions and 0 deletions
|
@ -1,4 +1,19 @@
|
|||
{% set map = {
|
||||
'Amazon': {
|
||||
'pkgs_server': ['nfs-utils'],
|
||||
'pkgs_client': ['nfs-utils'],
|
||||
'service_name': 'nfs'
|
||||
},
|
||||
'CentOS': {
|
||||
'pkgs_server': ['nfs-utils'],
|
||||
'pkgs_client': ['nfs-utils'],
|
||||
'service_name': 'nfs'
|
||||
},
|
||||
'RedHat': {
|
||||
'pkgs_server': ['nfs-utils'],
|
||||
'pkgs_client': ['nfs-utils'],
|
||||
'service_name': 'nfs'
|
||||
},
|
||||
'SUSE': {
|
||||
'pkgs_server': ['nfs-kernel-server'],
|
||||
'pkgs_client': ['nfs-client'],
|
||||
|
|
Loading…
Add table
Reference in a new issue