2022-07-06 17:14:06 +08:00
|
|
|
//go:build !linux && !darwin
|
2019-04-26 03:39:49 +08:00
|
|
|
|
|
|
|
package parse
|
|
|
|
|
2019-09-13 05:44:50 +08:00
|
|
|
import (
|
2022-07-06 17:14:06 +08:00
|
|
|
"errors"
|
|
|
|
|
2021-02-07 06:49:40 +08:00
|
|
|
"github.com/containers/buildah/define"
|
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) {
|
2022-07-06 17:14:06 +08:00
|
|
|
return nil, errors.New("devices not supported")
|
2019-09-13 05:44:50 +08:00
|
|
|
}
|