diff options
author | Dan Bode <dan@puppetlabs.com> | 2011-07-27 15:28:44 -0700 |
---|---|---|
committer | Dan Bode <dan@puppetlabs.com> | 2011-07-27 15:28:44 -0700 |
commit | 4540949d96608c6ff7eed07d53294337446fbead (patch) | |
tree | d56d4f7d2723f2b83fed621fbc097aa5a552ed33 /lib/puppet/type | |
parent | 9560b6336cc983b65aaff909f4fb2e983dfd7012 (diff) | |
download | puppet-stdlib-4540949d96608c6ff7eed07d53294337446fbead.tar.gz puppet-stdlib-4540949d96608c6ff7eed07d53294337446fbead.tar.bz2 |
(#8665) Change type from append_line to whole_line
Changed the type name from append_line to
whole_line.
After feedback that having a type with a verb in
the name was confusing.
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', } |