mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-24 13:05:17 +00:00
48d5a1cd1a
Signed-off-by: Evan Lezar <elezar@nvidia.com>
19 lines
313 B
Go
19 lines
313 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package validate
|
|
|
|
import (
|
|
"github.com/syndtr/gocapability/capability"
|
|
)
|
|
|
|
// LastCap return last cap of system
|
|
func LastCap() capability.Cap {
|
|
return capability.Cap(-1)
|
|
}
|
|
|
|
// CheckLinux is a noop on this platform
|
|
func (v *Validator) CheckLinux() (errs error) {
|
|
return nil
|
|
}
|