mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
volume/local: make setOpts() a method of localVolume
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
@@ -173,7 +173,7 @@ func (r *Root) Create(name string, opts map[string]string) (volume.Volume, error
|
||||
}
|
||||
|
||||
if len(opts) != 0 {
|
||||
if err = setOpts(v, opts); err != nil {
|
||||
if err = v.setOpts(opts); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
var b []byte
|
||||
|
||||
@@ -47,7 +47,7 @@ func (o *optsConfig) String() string {
|
||||
return fmt.Sprintf("type='%s' device='%s' o='%s' size='%d'", o.MountType, o.MountDevice, o.MountOpts, o.Quota.Size)
|
||||
}
|
||||
|
||||
func setOpts(v *localVolume, opts map[string]string) error {
|
||||
func (v *localVolume) setOpts(opts map[string]string) error {
|
||||
if len(opts) == 0 {
|
||||
return nil
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ import (
|
||||
|
||||
type optsConfig struct{}
|
||||
|
||||
func setOpts(v *localVolume, opts map[string]string) error {
|
||||
func (v *localVolume) setOpts(opts map[string]string) error {
|
||||
if len(opts) > 0 {
|
||||
return errdefs.InvalidParameter(errors.New("options are not supported on this platform"))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user