diff options
author | Luke Kanies <luke@madstop.com> | 2007-11-28 04:16:59 +0100 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2007-11-28 04:16:59 +0100 |
commit | c7cd7ecc3b35351de615e369d7d1b91651427bf2 (patch) | |
tree | e3128361563f19e204b378f700a13fc8e28252c6 /lib/puppet/reference | |
parent | 1e6ba6f9ff74bc1204c59457911621a3ad12e8ae (diff) | |
download | puppet-c7cd7ecc3b35351de615e369d7d1b91651427bf2.tar.gz puppet-c7cd7ecc3b35351de615e369d7d1b91651427bf2.tar.xz puppet-c7cd7ecc3b35351de615e369d7d1b91651427bf2.zip |
Fixing the markup on the pkgdmg provider so it is a bit better
Diffstat (limited to 'lib/puppet/reference')
-rw-r--r-- | lib/puppet/reference/configuration.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/puppet/reference/configuration.rb b/lib/puppet/reference/configuration.rb index c37b2e7dd..2c424e098 100644 --- a/lib/puppet/reference/configuration.rb +++ b/lib/puppet/reference/configuration.rb @@ -29,7 +29,9 @@ config = Puppet::Util::Reference.newreference(:configuration, :depth => 1, :doc elsif name.to_s == "confdir" val = "/etc/puppet" end - str += "- **Section**: %s\n" % object.section + + # Leave out the section information; it was apparently confusing people. + #str += "- **Section**: %s\n" % object.section unless val == "" str += "- **Default**: %s\n" % val end |