diff options
| -rw-r--r-- | README.md | 25 | 
1 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..50a960f --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# Puppet NFS + +## Requirements + +## Tested on... + +* Debian 5 (Lenny) +* Debian 6 (Squeeze) + +## Example usage + +### Install NFS client tools + +    node /box/ { +      include nfs +    } + +### Install NFS client and server + +    node /box/ { +      class { 'nfs': +        server => true; +      } +    } +  | 
