camptocamp / puppet-nfs
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
README.rst | Fri May 29 04:52:33 -0700 2009 | |
| |
manifests/ | Thu Sep 03 01:23:02 -0700 2009 |
README.rst
Server node ::
node "my-nfs-server" {
NFS Puppet module
This module is provided to you by Camptocamp.
Dependencies
You have to configure your puppetmaster so that exported ressources will work.
Examples
Client node
node "my-nfs-client" {
include nfs::base
nfs::mount {"my mounted one":
share => '/srv/nfs/myshare',
mountpoint => '/mnt/nfs/myshare',
ensure => present,
server => "nfs.mydomain.ltd",
}
nfs::mount {"my unwanted one":
share => '/srv/nfs/myshare',
mountpoint => '/mnt/nfs/myshare',
ensure => absent,
server => "nfs.mydomain.ltd",
}
}
include nfs::server
Nfs::Export <<| tag == "nfs.mydomain.ltd" |>>
}
