diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-11-08 14:29:44 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-11-15 12:53:25 +0100 |
commit | 5934e4c9b50020e0099a71233ae4f9ba9356215f (patch) | |
tree | 5bb45e72e727080a10574b6be60b881fb3a34d6f /test/apiv2 | |
parent | 58cf0d4622ea280382dccdb527c483afd3f16562 (diff) | |
download | podman-5934e4c9b50020e0099a71233ae4f9ba9356215f.tar.gz podman-5934e4c9b50020e0099a71233ae4f9ba9356215f.tar.bz2 podman-5934e4c9b50020e0099a71233ae4f9ba9356215f.zip |
infra container: replace pause with catatonit
Podman has been using catatonit for a number of years already.
Thanks to @giuseppe, catatonit is now able to run as a pause
process which allows us to replace the pause binary entirely.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test/apiv2')
-rw-r--r-- | test/apiv2/40-pods.at | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/apiv2/40-pods.at b/test/apiv2/40-pods.at index f45e85f61..0a5201213 100644 --- a/test/apiv2/40-pods.at +++ b/test/apiv2/40-pods.at @@ -110,11 +110,11 @@ t GET libpod/pods/fakename/top 404 \ .cause="no such pod" t GET libpod/pods/foo/top 200 \ - .Processes[0][-1]="/pause" \ + .Processes[0][-1]="/catatonit -P" \ .Titles[-1]="COMMAND" t GET libpod/pods/foo/top?ps_args=args,pid 200 \ - .Processes[0][0]="/pause" \ + .Processes[0][0]="/catatonit -P" \ .Processes[0][1]="1" \ .Titles[0]="COMMAND" \ .Titles[1]="PID" \ |