diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-11-01 12:39:10 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-11-01 13:32:05 -0400 |
commit | 3fdb27ccc21bccfd491180d92f7a94ebc1c29239 (patch) | |
tree | 7d57773728de85fea11f8a879b4c728888dd305e /libpod | |
parent | d9f40fedcd566146cfbffbd0c2fe5086da72cb42 (diff) | |
download | podman-3fdb27ccc21bccfd491180d92f7a94ebc1c29239.tar.gz podman-3fdb27ccc21bccfd491180d92f7a94ebc1c29239.tar.bz2 podman-3fdb27ccc21bccfd491180d92f7a94ebc1c29239.zip |
Update containers/buildah
Pin to 20e92ffe09820ad80e44117f8fae8f4a6b3883e7 to grab
FIPS fixes.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/container_internal_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_internal_linux.go b/libpod/container_internal_linux.go index 94184b6eb..471648bc8 100644 --- a/libpod/container_internal_linux.go +++ b/libpod/container_internal_linux.go @@ -1088,7 +1088,7 @@ func (c *Container) makeBindMounts() error { } // Add Secret Mounts - secretMounts := secrets.SecretMountsWithUIDGID(c.config.MountLabel, c.state.RunDir, c.runtime.config.DefaultMountsFile, c.state.RunDir, c.RootUID(), c.RootGID(), rootless.IsRootless()) + secretMounts := secrets.SecretMountsWithUIDGID(c.config.MountLabel, c.state.RunDir, c.runtime.config.DefaultMountsFile, c.state.RunDir, c.RootUID(), c.RootGID(), rootless.IsRootless(), false) for _, mount := range secretMounts { if _, ok := c.state.BindMounts[mount.Destination]; !ok { c.state.BindMounts[mount.Destination] = mount.Source |