diff options
author | Will Thompson <wjt@endlessos.org> | 2021-03-02 14:31:39 +0000 |
---|---|---|
committer | Will Thompson <wjt@endlessos.org> | 2021-03-02 14:31:43 +0000 |
commit | 63a3b8a093a49e63ae411458186c9f483e12db50 (patch) | |
tree | 33c1327a8ddf8535907a6b9f07ae96cf8d0d7a65 /docs | |
parent | c7267329bffa12df14c37e2d083c0c91ad7bb102 (diff) | |
download | podman-63a3b8a093a49e63ae411458186c9f483e12db50.tar.gz podman-63a3b8a093a49e63ae411458186c9f483e12db50.tar.bz2 podman-63a3b8a093a49e63ae411458186c9f483e12db50.zip |
podman-system-service.1.md: fix timeout example
The rest of this document claims that the argument is called '--time',
not '--timeout', and that the value is expressed in seconds. As
currently written, the example (which ostensibly runs the API service
for 5 seconds) uses the '--timeout' spelling (which actually does work,
as an undocumented alias) and passes a value of '5000', which is more
than an hour. Fix both.
[NO TESTS NEEDED] as this is a simple documentation change.
Signed-off-by: Will Thompson <wjt@endlessos.org>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-system-service.1.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-system-service.1.md b/docs/source/markdown/podman-system-service.1.md index 70764823c..54ce3f040 100644 --- a/docs/source/markdown/podman-system-service.1.md +++ b/docs/source/markdown/podman-system-service.1.md @@ -34,7 +34,7 @@ Print usage statement. Run an API listening for 5 seconds using the default socket. ``` -podman system service --timeout 5000 +podman system service --time 5 ``` ## SEE ALSO |