2019-04-26 03:39:49 +08:00
|
|
|
// +build !linux,!darwin
|
|
|
|
|
|
|
|
package parse
|
|
|
|
|
2019-09-13 05:44:50 +08:00
|
|
|
import (
|
2021-02-07 06:49:40 +08:00
|
|
|
"github.com/containers/buildah/define"
|
2020-04-04 04:34:43 +08:00
|
|
|
"github.com/pkg/errors"
|
2019-09-13 05:44:50 +08:00
|
|
|
)
|
|
|
|
|
2019-04-26 03:39:49 +08:00
|
|
|
func getDefaultProcessLimits() []string {
|
|
|
|
return []string{}
|
|
|
|
}
|
2019-09-13 05:44:50 +08:00
|
|
|
|
2021-02-07 06:49:40 +08:00
|
|
|
func DeviceFromPath(device string) (define.ContainerDevices, error) {
|
|
|
|
return nil, errors.Errorf("devices not supported")
|
2019-09-13 05:44:50 +08:00
|
|
|
}
|