diff options
author | W. Trevor King <wking@tremily.us> | 2018-05-19 16:44:10 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-21 14:09:25 +0000 |
commit | 31e3a50ddd4be0c126a4c17a4a656d0957613551 (patch) | |
tree | 5e88e73eefb04ebbe5ddd0ab0922ed1300f53da1 | |
parent | fb628380a22c96887ccf0062ba1517b44dba1ecc (diff) | |
download | podman-31e3a50ddd4be0c126a4c17a4a656d0957613551.tar.gz podman-31e3a50ddd4be0c126a4c17a4a656d0957613551.tar.bz2 podman-31e3a50ddd4be0c126a4c17a4a656d0957613551.zip |
hooks/README: Fix some Markdown typos (e.g. missing runc target)
I'd accidentally introduced these typos in ea415610 (hooks/docs: Add
oci-hooks.5 and per-package man page building, 2018-05-15, #772).
Signed-off-by: W. Trevor King <wking@tremily.us>
Closes: #810
Approved by: mheon
-rw-r--r-- | pkg/hooks/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/hooks/README.md b/pkg/hooks/README.md index d68a2e0a7..61fbbcac6 100644 --- a/pkg/hooks/README.md +++ b/pkg/hooks/README.md @@ -11,11 +11,12 @@ For example the [oci-systemd-hook][] only executes if the command is `init` or ` This means if we automatically enabled all hooks, every container would have to execute `oci-systemd-hook`, even if they don't run systemd inside of the container. Performance would also suffer if we exectuted each hook at each stage ([pre-start][], [post-start][], and [post-stop][]). -The hooks configuration is documented in [`oci-hooks.5`][docs/oci-hooks.5.md]. +The hooks configuration is documented in [`oci-hooks.5`](docs/oci-hooks.5.md). [oci-systemd-hook]: https://github.com/projectatomic/oci-systemd-hook [post-start]: https://github.com/opencontainers/runtime-spec/blob/v1.0.1/config.md#poststart [post-stop]: https://github.com/opencontainers/runtime-spec/blob/v1.0.1/config.md#poststop [pre-start]: https://github.com/opencontainers/runtime-spec/blob/v1.0.1/config.md#prestart +[runc]: https://github.com/opencontainers/runc [runtime-spec]: https://github.com/opencontainers/runtime-spec/blob/v1.0.1/spec.md [spec-hooks]: https://github.com/opencontainers/runtime-spec/blob/v1.0.1/config.md#posix-platform-hooks |