manager_windows.go 676 B

1234567891011121314151617181920212223242526272829303132
  1. // +build windows
  2. package plugin
  3. import (
  4. "fmt"
  5. "github.com/docker/docker/plugin/v2"
  6. specs "github.com/opencontainers/runtime-spec/specs-go"
  7. )
  8. func (pm *Manager) enable(p *v2.Plugin, c *controller, force bool) error {
  9. return fmt.Errorf("Not implemented")
  10. }
  11. func (pm *Manager) initSpec(p *v2.Plugin) (*specs.Spec, error) {
  12. return nil, fmt.Errorf("Not implemented")
  13. }
  14. func (pm *Manager) disable(p *v2.Plugin, c *controller) error {
  15. return fmt.Errorf("Not implemented")
  16. }
  17. func (pm *Manager) restore(p *v2.Plugin) error {
  18. return fmt.Errorf("Not implemented")
  19. }
  20. // Shutdown plugins
  21. func (pm *Manager) Shutdown() {
  22. }
  23. func setupRoot(root string) error { return nil }