Puppet Class: librenms::applications::nfs_client
- Inherits:
- librenms::params
- Defined in:
- manifests/applications/nfs_client.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/applications/nfs_client.pp', line 1
class librenms::applications::nfs_client (
Boolean $enabled = true,
) inherits librenms::params {
if $::operatingsystem == 'FreeBSD' {
create_resources(librenms::fetch, {
fbsdnfsclient => {
use => $enabled,
}})
librenms::snmpd{'fbsdnfsclient':
use => $enabled,
script => 'fbsdnfsclient',
}
} else {
notice{'No Linux Version of NFS-Client present':
}
}
}
|