mirror of
https://github.com/containers/podman.git
synced 2025-10-19 20:23:08 +08:00

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>
8 lines
106 B
Go
8 lines
106 B
Go
//+build !linux
|
|
|
|
package createconfig
|
|
|
|
func getHostRlimits() ([]systemUlimit, error) {
|
|
return nil, nil
|
|
}
|