summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2011-02-23 14:05:56 -0500
committerJeff McCune <jeff@puppetlabs.com>2011-02-23 14:05:56 -0500
commit384ffd957153f65eb4f47b3142d98853c31b4124 (patch)
treea46170c873e3e93a3261a1a93eb72a8466e8abba /manifests
Initial commit
Diffstat (limited to 'manifests')
-rw-r--r--manifests/README.markdown28
-rw-r--r--manifests/init.pp17
2 files changed, 45 insertions, 0 deletions
diff --git a/manifests/README.markdown b/manifests/README.markdown
new file mode 100644
index 0000000..bbf645a
--- /dev/null
+++ b/manifests/README.markdown
@@ -0,0 +1,28 @@
+Manifests
+=========
+
+Module manifest files belong in this directory.
+
+`init.pp` defines how the module will carry out its tasks in this file.
+
+Add additional definitions in this directory. Their file paths should match the
+definition name; for example, a definition `mydefinition`, defined like this:
+
+ # Definition: mydefinition
+ #
+ # This is the mydefinition in the mymodule module.
+ #
+ # Parameters:
+ #
+ # Actions:
+ #
+ # Requires:
+ #
+ # Sample Usage:
+ #
+ # [Remember: No empty lines between comments and class definition]
+ define mydefinition {
+ # ...
+ }
+
+Should be found in `mydefinition.pp` in this directory.
diff --git a/manifests/init.pp b/manifests/init.pp
new file mode 100644
index 0000000..0c12c7e
--- /dev/null
+++ b/manifests/init.pp
@@ -0,0 +1,17 @@
+# Class: ntp
+#
+# This module manages ntp
+#
+# Parameters:
+#
+# Actions:
+#
+# Requires:
+#
+# Sample Usage:
+#
+# [Remember: No empty lines between comments and class definition]
+class ntp {
+
+
+}