manager_solaris.go 657 B

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