diff options
author | Jeff McCune <jeff@puppetlabs.com> | 2011-02-23 14:05:56 -0500 |
---|---|---|
committer | Jeff McCune <jeff@puppetlabs.com> | 2011-02-23 14:05:56 -0500 |
commit | 384ffd957153f65eb4f47b3142d98853c31b4124 (patch) | |
tree | a46170c873e3e93a3261a1a93eb72a8466e8abba /manifests |
Initial commit
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/README.markdown | 28 | ||||
-rw-r--r-- | manifests/init.pp | 17 |
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 { + + +} |