summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-11 14:20:55 +0100
committerGitHub <noreply@github.com>2019-02-11 14:20:55 +0100
commitacf2e913730a27fcdc3fcd7c160aa19e071dde36 (patch)
treef83d330839a23205743281faed9ddae29a4666e4 /cmd
parent6d7d90e6262c2b146d8f09bb2c33ae7890cd1f64 (diff)
parent41967e260195bb874a80b5457f0f2fa02aab6635 (diff)
downloadpodman-acf2e913730a27fcdc3fcd7c160aa19e071dde36.tar.gz
podman-acf2e913730a27fcdc3fcd7c160aa19e071dde36.tar.bz2
podman-acf2e913730a27fcdc3fcd7c160aa19e071dde36.zip
Merge pull request #2308 from giuseppe/pod-create-allow-rootless
pod: drop invalid check for rootless
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/pod_create.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/cmd/podman/pod_create.go b/cmd/podman/pod_create.go
index 9ac5d94a9..35e58df31 100644
--- a/cmd/podman/pod_create.go
+++ b/cmd/podman/pod_create.go
@@ -9,7 +9,6 @@ import (
"github.com/containers/libpod/cmd/podman/libpodruntime"
"github.com/containers/libpod/cmd/podman/shared"
"github.com/containers/libpod/libpod"
- "github.com/containers/libpod/pkg/rootless"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
@@ -82,9 +81,6 @@ func podCreateCmd(c *cliconfig.PodCreateValues) error {
if !c.Infra {
return errors.Errorf("you must have an infra container to publish port bindings to the host")
}
- if rootless.IsRootless() {
- return errors.Errorf("rootless networking does not allow port binding to the host")
- }
}
if !c.Infra && c.Flag("share").Changed && c.Share != "none" && c.Share != "" {