diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-09-15 17:07:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-15 17:07:59 +0200 |
commit | 50142678e43b68b9de31c29f34af97077213ac88 (patch) | |
tree | b676ae294a0080f8c54663cd7c5548435f0fe5c3 /test | |
parent | 05e8d564ca12dbf57dcdae9b8404aee670d97c6e (diff) | |
parent | c20abf12c714f359c7bbb291c444530f70cb1185 (diff) | |
download | podman-50142678e43b68b9de31c29f34af97077213ac88.tar.gz podman-50142678e43b68b9de31c29f34af97077213ac88.tar.bz2 podman-50142678e43b68b9de31c29f34af97077213ac88.zip |
Merge pull request #15816 from vrothberg/15686-drop-execstop
generate systemd: drop ExecStop
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/generate_systemd_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/e2e/generate_systemd_test.go b/test/e2e/generate_systemd_test.go index 347440faf..7ceea1b91 100644 --- a/test/e2e/generate_systemd_test.go +++ b/test/e2e/generate_systemd_test.go @@ -566,7 +566,6 @@ var _ = Describe("Podman generate systemd", func() { Expect(session.OutputToString()).To(ContainSubstring("BindsTo=pod-foo.service")) Expect(session.OutputToString()).To(ContainSubstring("pod create --infra-conmon-pidfile %t/pod-foo.pid --pod-id-file %t/pod-foo.pod-id --exit-policy=stop --name foo")) Expect(session.OutputToString()).To(ContainSubstring("ExecStartPre=/bin/rm -f %t/pod-foo.pid %t/pod-foo.pod-id")) - Expect(session.OutputToString()).To(ContainSubstring("pod stop --ignore --pod-id-file %t/pod-foo.pod-id -t 10")) Expect(session.OutputToString()).To(ContainSubstring("pod rm --ignore -f --pod-id-file %t/pod-foo.pod-id")) }) |