diff options
author | Yuan-Hao Chen <yhchen0906@gmail.com> | 2020-06-19 00:59:50 +0800 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2020-06-24 14:29:00 -0400 |
commit | 27120bfbab65e4a423e4801a0d93bdb661779a98 (patch) | |
tree | 3faadfefac0f5cc81ed644d48e4bd801478a57de /docs/source | |
parent | 4af2081424c8fa7ac191e9c5231d2429edb8327c (diff) | |
download | podman-27120bfbab65e4a423e4801a0d93bdb661779a98.tar.gz podman-27120bfbab65e4a423e4801a0d93bdb661779a98.tar.bz2 podman-27120bfbab65e4a423e4801a0d93bdb661779a98.zip |
correct the absolute path of `rm` executable
Signed-off-by: Yuan-Hao Chen <yhchen0906@gmail.com>
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/markdown/podman-generate-systemd.1.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-generate-systemd.1.md b/docs/source/markdown/podman-generate-systemd.1.md index 2facd754c..dc10a583d 100644 --- a/docs/source/markdown/podman-generate-systemd.1.md +++ b/docs/source/markdown/podman-generate-systemd.1.md @@ -97,7 +97,7 @@ After=network-online.target [Service] Environment=PODMAN_SYSTEMD_UNIT=%n Restart=on-failure -ExecStartPre=/usr/bin/rm -f %t/%n-pid %t/%n-cid +ExecStartPre=/bin/rm -f %t/%n-pid %t/%n-cid ExecStart=/usr/local/bin/podman run --conmon-pidfile %t/%n-pid --cidfile %t/%n-cid --cgroups=no-conmon -d -dit alpine ExecStop=/usr/local/bin/podman stop --ignore --cidfile %t/%n-cid -t 10 ExecStopPost=/usr/local/bin/podman rm --ignore -f --cidfile %t/%n-cid |