From 87c255f29fcf4eb2fd21b21a1abe9d9fdcc7dbca Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Fri, 14 Sep 2018 11:16:58 -0400 Subject: Don't tmpcopyup on systemd cgroup Signed-off-by: Daniel J Walsh --- pkg/spec/spec.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkg/spec/spec.go b/pkg/spec/spec.go index ad14ea65d..fb072dbd5 100644 --- a/pkg/spec/spec.go +++ b/pkg/spec/spec.go @@ -403,7 +403,7 @@ func setupSystemd(config *CreateConfig, g *generate.Generator) error { return err } options := []string{"rw", "rprivate", "noexec", "nosuid", "nodev"} - for _, dest := range []string{"/run", "/run/lock", "/sys/fs/cgroup/systemd"} { + for _, dest := range []string{"/run", "/run/lock"} { if libpod.MountExists(mounts, dest) { continue } @@ -427,6 +427,13 @@ func setupSystemd(config *CreateConfig, g *generate.Generator) error { } g.AddMount(tmpfsMnt) } + tmpfsMnt := spec.Mount{ + Destination: "/sys/fs/cgroup/systemd", + Type: "tmpfs", + Source: "tmpfs", + Options: append(options, "size=65536k"), + } + g.AddMount(tmpfsMnt) return nil } -- cgit v1.2.3-54-g00ecf