mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-11 18:15:28 +00:00
20 lines
465 B
Go
20 lines
465 B
Go
|
package docker // import "docker.io/go-docker"
|
||
|
|
||
|
import (
|
||
|
"net/url"
|
||
|
|
||
|
"docker.io/go-docker/api/types"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// PluginDisable disables a plugin
|
||
|
func (cli *Client) PluginDisable(ctx context.Context, name string, options types.PluginDisableOptions) error {
|
||
|
query := url.Values{}
|
||
|
if options.Force {
|
||
|
query.Set("force", "1")
|
||
|
}
|
||
|
resp, err := cli.post(ctx, "/plugins/"+name+"/disable", query, nil, nil)
|
||
|
ensureReaderClosed(resp)
|
||
|
return err
|
||
|
}
|