summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2008-10-29 15:53:39 +1100
committerJames Turnbull <james@lovedthanlost.net>2008-10-29 15:53:39 +1100
commit649a9e009a3a5bd070051b972c2cf26989af8e8c (patch)
treee64d4645b312d0350680671d992bc8bfcbdbf188
parenta83b3ffb3fdf8fecf1aeac27851c2d25ebd8d94d (diff)
downloadpuppet-649a9e009a3a5bd070051b972c2cf26989af8e8c.tar.gz
puppet-649a9e009a3a5bd070051b972c2cf26989af8e8c.tar.xz
puppet-649a9e009a3a5bd070051b972c2cf26989af8e8c.zip
Fixed augeas examples in type
-rw-r--r--lib/puppet/type/augeas.rb4
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: