summaryrefslogtreecommitdiff
path: root/docs/podman-container-refresh.1.md
diff options
context:
space:
mode:
authorEd Santiago <santiago@redhat.com>2019-02-28 15:57:32 -0700
committerEd Santiago <santiago@redhat.com>2019-03-01 06:53:52 -0700
commit6f474c57042127417048fc785ebf7b89ea09b175 (patch)
tree85044db617f6c784b6c1c33985323d58011ff155 /docs/podman-container-refresh.1.md
parent91373151335a84c5b78dbe46362cb678807d7509 (diff)
downloadpodman-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-container-refresh.1.md')
-rw-r--r--docs/podman-container-refresh.1.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/podman-container-refresh.1.md b/docs/podman-container-refresh.1.md
deleted file mode 100644
index 26552faa6..000000000
--- a/docs/podman-container-refresh.1.md
+++ /dev/null
@@ -1,25 +0,0 @@
-% podman-container-refresh(1)
-
-## NAME
-podman\-container\-refresh - Refresh all containers
-
-## SYNOPSIS
-**podman container refresh**
-
-## DESCRIPTION
-The refresh command refreshes the state of all containers to pick up database
-schema or general configuration changes. It is not necessary during normal
-operation, and will typically be invoked by package managers after finishing an
-upgrade of the Podman package.
-
-As part of refresh, all running containers will be restarted.
-
-## EXAMPLES ##
-
-```
-$ podman container refresh
-[root@localhost /]#
-```
-
-## SEE ALSO
-podman(1), podman-run(1)