summaryrefslogtreecommitdiff
path: root/test/e2e/systemd_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-14 17:59:12 +0200
committerGitHub <noreply@github.com>2020-07-14 17:59:12 +0200
commit210f1040d26334457803bc1da74667f70630a620 (patch)
treebd2c5c93236b1ba4a9e9af85df33223a49bbff76 /test/e2e/systemd_test.go
parent3d3359086ef0ed0833a8ac8e9d06d9934d835139 (diff)
parent99cc07670099cbfa4bfc2dc7b24b39b254bc9561 (diff)
downloadpodman-210f1040d26334457803bc1da74667f70630a620.tar.gz
podman-210f1040d26334457803bc1da74667f70630a620.tar.bz2
podman-210f1040d26334457803bc1da74667f70630a620.zip
Merge pull request #6952 from baude/systemdpid1fix
add systemd to fedora image
Diffstat (limited to 'test/e2e/systemd_test.go')
-rw-r--r--test/e2e/systemd_test.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/e2e/systemd_test.go b/test/e2e/systemd_test.go
index 3db8fc3a6..a1cdff70e 100644
--- a/test/e2e/systemd_test.go
+++ b/test/e2e/systemd_test.go
@@ -81,13 +81,8 @@ WantedBy=multi-user.target
})
It("podman run container with systemd PID1", func() {
- systemdImage := "fedora"
- pull := podmanTest.Podman([]string{"pull", systemdImage})
- pull.WaitWithDefaultTimeout()
- Expect(pull.ExitCode()).To(Equal(0))
-
ctrName := "testSystemd"
- run := podmanTest.Podman([]string{"run", "--name", ctrName, "-t", "-i", "-d", systemdImage, "/usr/sbin/init"})
+ run := podmanTest.Podman([]string{"run", "--name", ctrName, "-t", "-i", "-d", ubi_init, "/sbin/init"})
run.WaitWithDefaultTimeout()
Expect(run.ExitCode()).To(Equal(0))
ctrID := run.OutputToString()