summaryrefslogtreecommitdiff
path: root/lib/puppet/type
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/type')
-rw-r--r--lib/puppet/type/whole_line.rb (renamed from lib/puppet/type/append_line.rb)6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/puppet/type/append_line.rb b/lib/puppet/type/whole_line.rb
index b3f926c..f231602 100644
--- a/lib/puppet/type/append_line.rb
+++ b/lib/puppet/type/whole_line.rb
@@ -1,11 +1,11 @@
-Puppet::Type.newtype(:append_line) do
+Puppet::Type.newtype(:whole_line) do
desc <<-EOT
- Type that can append a line to a file if it does not already contain it.
+ Type that can append whole a line to a file if it does not already contain it.
Example:
- append_line { 'sudo_rule':
+ whole_line { 'sudo_rule':
path => '/etc/sudoers',
line => '%admin ALL=(ALL) ALL',
}