diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-22 22:52:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-22 22:52:39 +0100 |
commit | e6cc5706cd337664cf3c38bca9c9caf524621161 (patch) | |
tree | f76805093ecbd978a1dae1edf29b5dd03bdafb69 /cmd/podman/main.go | |
parent | 4d9f4cf71c79639da451a12a9e1d1d824bd15a9f (diff) | |
parent | d47a9a6c4d0fac435abb35c9c38b777d12e653fc (diff) | |
download | podman-e6cc5706cd337664cf3c38bca9c9caf524621161.tar.gz podman-e6cc5706cd337664cf3c38bca9c9caf524621161.tar.bz2 podman-e6cc5706cd337664cf3c38bca9c9caf524621161.zip |
Merge pull request #2410 from giuseppe/cp-rootless-support
cmd: support rootless mode for cp command
Diffstat (limited to 'cmd/podman/main.go')
-rw-r--r-- | cmd/podman/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/main.go b/cmd/podman/main.go index 990e55a8c..bb21f2f79 100644 --- a/cmd/podman/main.go +++ b/cmd/podman/main.go @@ -61,6 +61,7 @@ var cmdsNotRequiringRootless = map[*cobra.Command]bool{ _versionCommand: true, _createCommand: true, _execCommand: true, + _cpCommand: true, _exportCommand: true, //// `info` must be executed in an user namespace. //// If this change, please also update libpod.refreshRootless() |