mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-24 09:17:53 +00: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>
7 lines
106 B
Go
7 lines
106 B
Go
//+build !linux
|
|
|
|
package createconfig
|
|
|
|
func getHostRlimits() ([]systemUlimit, error) {
|
|
return nil, nil
|
|
}
|