From fb88074e68db25474290535e8a778e39434cc2a2 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Wed, 3 Jul 2019 18:18:02 +0200 Subject: podman: add --ulimit host add a simple way to copy ulimit values from the host. if --ulimit host is used then the current ulimits in place are copied to the container. Signed-off-by: Giuseppe Scrivano --- pkg/spec/spec_unsupported.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pkg/spec/spec_unsupported.go (limited to 'pkg/spec/spec_unsupported.go') diff --git a/pkg/spec/spec_unsupported.go b/pkg/spec/spec_unsupported.go new file mode 100644 index 000000000..0f6a9acdc --- /dev/null +++ b/pkg/spec/spec_unsupported.go @@ -0,0 +1,7 @@ +//+build !linux + +package createconfig + +func getHostRlimits() ([]systemUlimit, error) { + return nil, nil +} -- cgit v1.2.3-54-g00ecf