Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs #9447

Merged
merged 4 commits into from
Aug 14, 2024
Merged

Update docs #9447

merged 4 commits into from
Aug 14, 2024

Commits on Aug 12, 2024

  1. Use valid ronn syntax in filebucket help

    Previously, running `rake manpages` resulted in:
    
         roff: ./man/man8/puppet-filebucket.8
         warn: unrecognized block tag: "blockquote"
    
    This is because '>' is not valid ronn syntax. As a result the "Note" was
    excluded from the generated `man/man8/puppet-filebucket.8`
    
    Also add a new line to separate using a local filebucket.
    joshcooper committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    ecb2092 View commit details
    Browse the repository at this point in the history
  2. Fix typo

    joshcooper committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    9498f3f View commit details
    Browse the repository at this point in the history
  3. Remove unhelpful warning

    joshcooper committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    d20cc43 View commit details
    Browse the repository at this point in the history
  4. Render man/man5/puppetconf.5 correctly

    Previously, `rake genmanpages` generated warnings when converting ronn to man:
    
        roff: ./man/man5/puppetconf.5
        warn: unrecognized block tag: "hr"
        warn: unexpected text: "Return a YAML hash with up to three keys:"
    
    The first warning was because definition lists need to have a space between each
    item. As a result the entire line "Return a YAML hash with up to three keys" was
    omitted from the output.
    
    The second warning was because '* * *' is not valid in ronn.
    joshcooper committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    ef22dc8 View commit details
    Browse the repository at this point in the history