summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2019-03-18 22:42:21 +0100
committerGiuseppe Scrivano <gscrivan@redhat.com>2019-03-19 15:01:49 +0100
commit69593923e08dcae27a7f56657f637cb79292a450 (patch)
treea18cb8c5530df862c3d03b6aa0ed79900f0dbecc /cmd
parentc6b205be77fb2a50772cd31267e09503ecd8b6bc (diff)
downloadpodman-69593923e08dcae27a7f56657f637cb79292a450.tar.gz
podman-69593923e08dcae27a7f56657f637cb79292a450.tar.bz2
podman-69593923e08dcae27a7f56657f637cb79292a450.zip
rootless: fix pod kill
we don't need to access the storage Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/pod_kill.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/podman/pod_kill.go b/cmd/podman/pod_kill.go
index ebd7db762..c538674a4 100644
--- a/cmd/podman/pod_kill.go
+++ b/cmd/podman/pod_kill.go
@@ -6,6 +6,7 @@ import (
"github.com/containers/libpod/cmd/podman/cliconfig"
"github.com/containers/libpod/pkg/adapter"
+ "github.com/containers/libpod/pkg/rootless"
"github.com/docker/docker/pkg/signal"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
@@ -48,6 +49,7 @@ func init() {
// podKillCmd kills one or more pods with a signal
func podKillCmd(c *cliconfig.PodKillValues) error {
+ rootless.SetSkipStorageSetup(true)
runtime, err := adapter.GetRuntime(&c.PodmanCommand)
if err != nil {
return errors.Wrapf(err, "could not get runtime")