summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorRyan Coleman <ryan@puppetlabs.com>2013-02-14 09:14:33 -0800
committerRyan Coleman <ryan@puppetlabs.com>2013-02-14 09:14:33 -0800
commite1c8433552ce7044541843b019aa3069a45c10d1 (patch)
tree82245f8fb56e2611bc0c1dde5868418b625e34cf /manifests
parent5015ec6190ea415f080e6c062e57fc9bb0be96e1 (diff)
parentab3edf97f92853fe40b92670d5d4ec9adfbeddcc (diff)
Merge pull request #44 from puppetlabs/readme_update
Update Documentation and Purge Extras
Diffstat (limited to 'manifests')
-rw-r--r--manifests/README.markdown28
1 files changed, 0 insertions, 28 deletions
diff --git a/manifests/README.markdown b/manifests/README.markdown
deleted file mode 100644
index bbf645a..0000000
--- a/manifests/README.markdown
+++ /dev/null
@@ -1,28 +0,0 @@
-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.