diff options
Diffstat (limited to 'manifests/params.pp')
-rw-r--r-- | manifests/params.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/params.pp b/manifests/params.pp index db46c24..5c9e961 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -20,6 +20,7 @@ class nfs::params { $service_hasrestart = true $service_hasstatus = true $service_name = 'nfs' + $service_rpc = 'rpcbind' } 'Debian', 'Ubuntu': { @@ -36,12 +37,12 @@ class nfs::params { $service_hasrestart = true $service_hasstatus = true $service_name = 'nfs-kernel-server' + $service_rpc = 'portmap' } default: { fail "Operating system ${::operatingsystem} is not supported yet." } } - } |