summaryrefslogtreecommitdiff
path: root/pkg/spec/config_linux.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-09-17 15:49:50 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-09-17 22:13:42 +0000
commite4770b82895659278b67a1bddb1a5acd8d785f59 (patch)
tree4d93b02adcbeb609a097e7bc23b1f2b7033f7752 /pkg/spec/config_linux.go
parent28a2bf827ae9f592ddd9e5c11277606d32cf329c (diff)
downloadpodman-e4770b82895659278b67a1bddb1a5acd8d785f59.tar.gz
podman-e4770b82895659278b67a1bddb1a5acd8d785f59.tar.bz2
podman-e4770b82895659278b67a1bddb1a5acd8d785f59.zip
Small updates to OCI spec generation
Firstly, when adding the privileged catch-all resource device, first remove the spec's default catch-all resource device. Second, remove our default rootfs propogation config - Docker does not set this by default, so I don't think we should either. Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #1491 Approved by: TomSweeneyRedHat
Diffstat (limited to 'pkg/spec/config_linux.go')
-rw-r--r--pkg/spec/config_linux.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/spec/config_linux.go b/pkg/spec/config_linux.go
index ea04b95bd..6c0a99419 100644
--- a/pkg/spec/config_linux.go
+++ b/pkg/spec/config_linux.go
@@ -60,6 +60,9 @@ func (c *CreateConfig) addPrivilegedDevices(g *generate.Generator) error {
for _, d := range hostDevices {
g.AddDevice(Device(d))
}
+
+ // Add resources device - need to clear the existing one first.
+ g.Spec().Linux.Resources.Devices = nil
g.AddLinuxResourcesDevice(true, "", nil, nil, "rwm")
return nil
}