diff options
author | Ed Santiago <santiago@redhat.com> | 2019-02-28 15:57:32 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2019-03-01 06:53:52 -0700 |
commit | 6f474c57042127417048fc785ebf7b89ea09b175 (patch) | |
tree | 85044db617f6c784b6c1c33985323d58011ff155 /docs/podman.1.md | |
parent | 91373151335a84c5b78dbe46362cb678807d7509 (diff) | |
download | podman-6f474c57042127417048fc785ebf7b89ea09b175.tar.gz podman-6f474c57042127417048fc785ebf7b89ea09b175.tar.bz2 podman-6f474c57042127417048fc785ebf7b89ea09b175.zip |
Fix link inconsistencies in man pages
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>
Diffstat (limited to 'docs/podman.1.md')
-rw-r--r-- | docs/podman.1.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/podman.1.md b/docs/podman.1.md index 43f288fd7..bc03d3c5a 100644 --- a/docs/podman.1.md +++ b/docs/podman.1.md @@ -137,7 +137,6 @@ the exit codes follow the `chroot` standard, see below: | [podman-exec(1)](podman-exec.1.md) | Execute a command in a running container. | | [podman-export(1)](podman-export.1.md) | Export a container's filesystem contents as a tar archive. | | [podman-generate(1)](podman-generate.1.md)| Generate structured data based for a containers and pods. | -| [podman-help(1)](podman-history.1.md) | Show help information on podman. | | [podman-history(1)](podman-history.1.md) | Show the history of an image. | | [podman-image(1)](podman-image.1.md) | Manage Images. | | [podman-images(1)](podman-images.1.md) | List images in local storage. | @@ -157,7 +156,6 @@ the exit codes follow the `chroot` standard, see below: | [podman-ps(1)](podman-ps.1.md) | Prints out information about containers. | | [podman-pull(1)](podman-pull.1.md) | Pull an image from a registry. | | [podman-push(1)](podman-push.1.md) | Push an image from local storage to elsewhere. | -| [podman-refresh(1)](podman-refresh.1.md) | Refresh state of all containers to handle database changes. | | [podman-restart(1)](podman-restart.1.md) | Restart one or more containers. | | [podman-rm(1)](podman-rm.1.md) | Remove one or more containers. | | [podman-rmi(1)](podman-rmi.1.md) | Removes one or more locally stored images. | |