aboutsummaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-11-01 12:39:10 -0400
committerMatthew Heon <matthew.heon@pm.me>2019-11-01 13:32:05 -0400
commit3fdb27ccc21bccfd491180d92f7a94ebc1c29239 (patch)
tree7d57773728de85fea11f8a879b4c728888dd305e /libpod
parentd9f40fedcd566146cfbffbd0c2fe5086da72cb42 (diff)
downloadpodman-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.go2
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