123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // +build !linux
- package plugin
- import (
- "errors"
- "io"
- "net/http"
- "github.com/docker/docker/api/types"
- "golang.org/x/net/context"
- )
- var errNotSupported = errors.New("plugins are not supported on this platform")
- // Disable deactivates a plugin, which implies that they cannot be used by containers.
- func (pm *Manager) Disable(name string) error {
- return errNotSupported
- }
- // Enable activates a plugin, which implies that they are ready to be used by containers.
- func (pm *Manager) Enable(name string, config *types.PluginEnableConfig) error {
- return errNotSupported
- }
- // Inspect examines a plugin config
- func (pm *Manager) Inspect(name string) (tp types.Plugin, err error) {
- return tp, errNotSupported
- }
- // Pull pulls a plugin and computes the privileges required to install it.
- func (pm *Manager) Pull(name string, metaHeader http.Header, authConfig *types.AuthConfig) (types.PluginPrivileges, error) {
- return nil, errNotSupported
- }
- // List displays the list of plugins and associated metadata.
- func (pm *Manager) List() ([]types.Plugin, error) {
- return nil, errNotSupported
- }
- // Push pushes a plugin to the store.
- func (pm *Manager) Push(name string, metaHeader http.Header, authConfig *types.AuthConfig) error {
- return errNotSupported
- }
- // Remove deletes plugin's root directory.
- func (pm *Manager) Remove(name string, config *types.PluginRmConfig) error {
- return errNotSupported
- }
- // Set sets plugin args
- func (pm *Manager) Set(name string, args []string) error {
- return errNotSupported
- }
- // CreateFromContext creates a plugin from the given pluginDir which contains
- // both the rootfs and the config.json and a repoName with optional tag.
- func (pm *Manager) CreateFromContext(ctx context.Context, tarCtx io.Reader, options *types.PluginCreateOptions) error {
- return errNotSupported
- }
|