summaryrefslogtreecommitdiff
path: root/libpod/container_internal_unsupported.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-06-15 16:13:13 -0400
committerGitHub <noreply@github.com>2021-06-15 16:13:13 -0400
commite405f1205378ab35d4e37eed3b94a683c26bb818 (patch)
treeb554e084291141a46804d861fc68a4d906959ac9 /libpod/container_internal_unsupported.go
parentb422a4eb49182f6b90dae9ed041546cc46cc59db (diff)
parent81eb71fe36db14f82452b0ded176095b63cb4a4e (diff)
downloadpodman-e405f1205378ab35d4e37eed3b94a683c26bb818.tar.gz
podman-e405f1205378ab35d4e37eed3b94a683c26bb818.tar.bz2
podman-e405f1205378ab35d4e37eed3b94a683c26bb818.zip
Merge pull request #10531 from rhatdan/volume
Fix permissions on initially created named volumes
Diffstat (limited to 'libpod/container_internal_unsupported.go')
-rw-r--r--libpod/container_internal_unsupported.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/libpod/container_internal_unsupported.go b/libpod/container_internal_unsupported.go
index f979bcbde..125329ce5 100644
--- a/libpod/container_internal_unsupported.go
+++ b/libpod/container_internal_unsupported.go
@@ -57,3 +57,8 @@ func (c *Container) reloadNetwork() error {
func (c *Container) getUserOverrides() *lookup.Overrides {
return nil
}
+
+// Fix ownership and permissions of the specified volume if necessary.
+func (c *Container) fixVolumePermissions(v *ContainerNamedVolume) error {
+ return define.ErrNotImplemented
+}