Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Fix link inconsistencies in man pages | Ed Santiago | 2019-03-01 |
| | | | | | | | | | | | | | | | Found via: for i in docs/*.md;do x=$(perl -ne 'if (/\[(podman-.*?)\(1\)\]\((podman-.*?)\.1\.md/) { print " $1 != $2\n" if $1 ne $2; print " ENOENT $2\n" unless -e "docs/$2.1.md" }' <$i); if [ -n "$x" ]; then echo $i; echo "$x";fi;done ...which is probably a good candidate for another CI hook, except I have no idea how to rewrite it in awk. Additionally, mark `podman refresh` and `podman container refresh` as hidden, remove its man page, and remove references to it from all other man pages. Signed-off-by: Ed Santiago <santiago@redhat.com> | ||
* | docs: consistent format for example | Valentin Rothberg | 2018-08-30 |
| | | | | | | | | | | All bash examples are now placed in a code section (```). The PS1 prompt is set to `$`. Signed-off-by: Valentin Rothberg <vrothberg@suse.com> Closes: #1375 Approved by: rhatdan | ||
* | docs: fix headers | Valentin Rothberg | 2018-08-30 |
| | | | | | | | Signed-off-by: Valentin Rothberg <vrothberg@suse.com> Closes: #1375 Approved by: rhatdan | ||
* | Add manpages for podman refresh | Matthew Heon | 2018-06-22 |
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #981 Approved by: baude |