summaryrefslogtreecommitdiff
path: root/lib/puppet/provider/README.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/provider/README.markdown')
-rw-r--r--lib/puppet/provider/README.markdown14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/puppet/provider/README.markdown b/lib/puppet/provider/README.markdown
deleted file mode 100644
index 27aa1a9..0000000
--- a/lib/puppet/provider/README.markdown
+++ /dev/null
@@ -1,14 +0,0 @@
-Providers
-=========
-
-Define providers under this directory.
-
-File paths should match the resource type name and provider name; for
-example, a provider `myprovider` for a resource type `mytype`, defined like this:
-
- Puppet::Type.type(:mytype).provide(:myprovider) do
- desc "Documentation here"
- # ...
- end
-
-Should be found in `mytype/myprovider.rb` under this directory.