summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2018-07-16 10:10:20 +0200
committerAtomic Bot <atomic-devel@projectatomic.io>2018-07-16 13:40:40 +0000
commit6372c977ea0e6206d137e734a981ca0bb3435e12 (patch)
tree595fb9ddd51d169492fea0d2b5ffac63de476ba7 /test
parent06c546e88d67fe7186d3da9dc245e2122511927a (diff)
downloadpodman-6372c977ea0e6206d137e734a981ca0bb3435e12.tar.gz
podman-6372c977ea0e6206d137e734a981ca0bb3435e12.tar.bz2
podman-6372c977ea0e6206d137e734a981ca0bb3435e12.zip
rootless: require subids to be present
Most images won't work without multiple ids/gids. Error out immediately if there are no multiple ids available. The error code when the user is not present in /etc/sub{g,u}id looks like: $ bin/podman run --rm -ti alpine echo hello ERRO[0000] No subuid ranges found for user "gscrivano" Closes: https://github.com/projectatomic/libpod/issues/1087 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> Closes: #1097 Approved by: rhatdan
Diffstat (limited to 'test')
-rw-r--r--test/e2e/rootless_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/e2e/rootless_test.go b/test/e2e/rootless_test.go
index d628b6fa1..918faa320 100644
--- a/test/e2e/rootless_test.go
+++ b/test/e2e/rootless_test.go
@@ -82,6 +82,7 @@ var _ = Describe("Podman rootless", func() {
env := os.Environ()
env = append(env, fmt.Sprintf("XDG_RUNTIME_DIR=%s", xdgRuntimeDir))
env = append(env, fmt.Sprintf("HOME=%s", home))
+ env = append(env, "PODMAN_ALLOW_SINGLE_ID_MAPPING_IN_USERNS=1")
cmd := podmanTest.PodmanAsUser([]string{"run", "--rootfs", mountPath, "echo", "hello"}, 1000, 1000, env)
cmd.WaitWithDefaultTimeout()
Expect(cmd.LineInOutputContains("hello")).To(BeTrue())