1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

fix plugin restart on docker restart

Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
Victor Vieux 2016-08-09 11:49:28 -07:00
parent 91853e44ae
commit ab12ed4a56
4 changed files with 5 additions and 5 deletions

View file

@ -35,7 +35,7 @@ func (pm *Manager) Enable(name string) error {
if err != nil {
return err
}
if err := pm.enable(p); err != nil {
if err := pm.enable(p, false); err != nil {
return err
}
pm.pluginEventLogger(p.PluginObj.ID, name, "enable")

View file

@ -321,7 +321,7 @@ func (pm *Manager) init() error {
if requiresManualRestore {
// if liveRestore is not enabled, the plugin will be stopped now so we should enable it
if err := pm.enable(p); err != nil {
if err := pm.enable(p, true); err != nil {
logrus.Errorf("failed to enable plugin '%s': %s", p.Name(), err)
}
}

View file

@ -20,8 +20,8 @@ import (
"github.com/opencontainers/specs/specs-go"
)
func (pm *Manager) enable(p *plugin) error {
if p.PluginObj.Active {
func (pm *Manager) enable(p *plugin, force bool) error {
if p.PluginObj.Active && !force {
return fmt.Errorf("plugin %s is already enabled", p.Name())
}
spec, err := pm.initSpec(p)

View file

@ -8,7 +8,7 @@ import (
"github.com/opencontainers/specs/specs-go"
)
func (pm *Manager) enable(p *plugin) error {
func (pm *Manager) enable(p *plugin, force bool) error {
return fmt.Errorf("Not implemented")
}