aboutsummaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-08-19 21:43:00 +0200
committerGitHub <noreply@github.com>2020-08-19 21:43:00 +0200
commitdcdb6474d6a65adce084da546fda7a93b5267c9b (patch)
tree9c31bfa2671c63202b3ced8cdfe1b01edd867030 /libpod
parent9babd21dfc263b0a63fc96eec0de2a6d0d834ab5 (diff)
parentbd63a252f3095274e35c9ab2f5d51f833dd89619 (diff)
downloadpodman-dcdb6474d6a65adce084da546fda7a93b5267c9b.tar.gz
podman-dcdb6474d6a65adce084da546fda7a93b5267c9b.tar.bz2
podman-dcdb6474d6a65adce084da546fda7a93b5267c9b.zip
Merge pull request #7346 from rhatdan/systemd
Don't limit the size on /run for systemd based containers
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 fdee3877c..ea4340e00 100644
--- a/libpod/container_internal_linux.go
+++ b/libpod/container_internal_linux.go
@@ -571,7 +571,7 @@ func (c *Container) setupSystemd(mounts []spec.Mount, g generate.Generator) erro
Destination: dest,
Type: "tmpfs",
Source: "tmpfs",
- Options: append(options, "tmpcopyup", "size=65536k"),
+ Options: append(options, "tmpcopyup"),
}
g.AddMount(tmpfsMnt)
}