mirror of
https://github.com/rancher/os.git
synced 2025-09-01 23:04:41 +00:00
Update vendor
This commit is contained in:
15
vendor/github.com/docker/containerd/supervisor/machine_solaris.go
generated
vendored
Normal file
15
vendor/github.com/docker/containerd/supervisor/machine_solaris.go
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
package supervisor
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
type Machine struct {
|
||||
Cpus int
|
||||
Memory int64
|
||||
}
|
||||
|
||||
func CollectMachineInformation() (Machine, error) {
|
||||
m := Machine{}
|
||||
return m, errors.New("supervisor CollectMachineInformation not implemented on Solaris")
|
||||
}
|
Reference in New Issue
Block a user