config.md: lifecycle broken links fix

fix lifecycle broken links that are left behind

Signed-off-by: Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
This commit is contained in:
Ma Shimiao 2017-05-12 20:56:36 +08:00
parent 3d8270e1c2
commit c1332a93f0
1 changed files with 2 additions and 2 deletions

View File

@ -379,12 +379,12 @@ On Linux, for example, they are called after the container namespaces are create
### <a name="configHooksPoststart" />Poststart
The post-start hooks MUST be called [after the user-specified process is executed](runtime#lifecycle) but before the [`start`](runtime.md#start) operation returns.
The post-start hooks MUST be called [after the user-specified process is executed](runtime.md#lifecycle) but before the [`start`](runtime.md#start) operation returns.
For example, this hook can notify the user that the container process is spawned.
### <a name="configHooksPoststop" />Poststop
The post-stop hooks MUST be called [after the container is deleted](runtime#lifecycle) but before the [`delete`](runtime.md#delete) operation returns.
The post-stop hooks MUST be called [after the container is deleted](runtime.md#lifecycle) but before the [`delete`](runtime.md#delete) operation returns.
Cleanup or debugging functions are examples of such a hook.
### Example