diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-05-29 11:40:28 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-06-11 11:01:13 +0200 |
commit | 144c6bb76d7652f53167d4bc7130cf897f5903a1 (patch) | |
tree | 948138d4ef50af9bbc0f12fd949074a4e8832728 /test/e2e/generate_systemd_test.go | |
parent | cf89bb671184e453c4ba5f27e26d02216d8fc491 (diff) | |
download | podman-144c6bb76d7652f53167d4bc7130cf897f5903a1.tar.gz podman-144c6bb76d7652f53167d4bc7130cf897f5903a1.tar.bz2 podman-144c6bb76d7652f53167d4bc7130cf897f5903a1.zip |
generate systemd: rename "cid" to "ctr-id"
Rename the container ID file from "cid" to "ctr-id" to make the
generated unit files a) easier to read and to b) pro-actively
avoid any confusion when pod ID files are being added in the
future.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test/e2e/generate_systemd_test.go')
-rw-r--r-- | test/e2e/generate_systemd_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/generate_systemd_test.go b/test/e2e/generate_systemd_test.go index d5ae441e2..64d220776 100644 --- a/test/e2e/generate_systemd_test.go +++ b/test/e2e/generate_systemd_test.go @@ -191,7 +191,7 @@ var _ = Describe("Podman generate systemd", func() { found, _ := session.GrepString("# container-foo.service") Expect(found).To(BeTrue()) - found, _ = session.GrepString("stop --ignore --cidfile %t/%n-cid -t 42") + found, _ = session.GrepString("stop --ignore --cidfile %t/%n-ctr-id -t 42") Expect(found).To(BeTrue()) }) |