diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-10-29 15:53:39 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-10-29 15:53:39 +1100 |
commit | 649a9e009a3a5bd070051b972c2cf26989af8e8c (patch) | |
tree | e64d4645b312d0350680671d992bc8bfcbdbf188 /lib/puppet | |
parent | a83b3ffb3fdf8fecf1aeac27851c2d25ebd8d94d (diff) | |
download | puppet-649a9e009a3a5bd070051b972c2cf26989af8e8c.tar.gz puppet-649a9e009a3a5bd070051b972c2cf26989af8e8c.tar.xz puppet-649a9e009a3a5bd070051b972c2cf26989af8e8c.zip |
Fixed augeas examples in type
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/type/augeas.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/type/augeas.rb b/lib/puppet/type/augeas.rb index 20b5bbbc9..61339407b 100644 --- a/lib/puppet/type/augeas.rb +++ b/lib/puppet/type/augeas.rb @@ -34,8 +34,8 @@ Puppet::Type.newtype(:augeas) do Sample usage with a string: augeas{\"test1\" : context => \"/files/etc/sysconfig/firstboot\", - changes => \"set RUN_FIRSTBOOT YES\" - onlyif => \"match other_value size > 0\" + changes => \"set RUN_FIRSTBOOT YES\", + onlyif => \"match other_value size > 0\", } Sample usage with an array and custom lenses: |