aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom De Vylder <tom@penumbra.be>2012-11-27 14:50:51 +0100
committerTom De Vylder <tom@penumbra.be>2012-11-27 14:50:51 +0100
commit288f7ac737ecc9481a0387d499082a48b3ca9b03 (patch)
treef12127e9cc05875f6803972f7b43b6c11b09fbdd
parent6f4279946456d77b3a5b419a71d6533d3603a907 (diff)
downloadpuppet-nfs-288f7ac737ecc9481a0387d499082a48b3ca9b03.tar.gz
puppet-nfs-288f7ac737ecc9481a0387d499082a48b3ca9b03.tar.bz2
Add documentation
-rw-r--r--README.md25
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;
+ }
+ }
+