Files
podman/pkg/spec/spec_unsupported.go
Giuseppe Scrivano fb88074e68 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 <gscrivan@redhat.com>
2019-07-08 19:22:54 +02:00

8 lines
106 B
Go

//+build !linux
package createconfig
func getHostRlimits() ([]systemUlimit, error) {
return nil, nil
}