github.com/kunnos/engine@v1.13.1/plugin/manager_solaris.go (about)

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