fix: swapped volume relabel option values
Signed-off-by: Xabier Napal <xabiernapal@pm.me>
This commit is contained in:
parent
e1a7a0efbe
commit
a7a7011961
|
|
@ -337,9 +337,9 @@ func getBindMount(args []string) (spec.Mount, error) {
|
||||||
}
|
}
|
||||||
switch kv[1] {
|
switch kv[1] {
|
||||||
case "private":
|
case "private":
|
||||||
newMount.Options = append(newMount.Options, "z")
|
|
||||||
case "shared":
|
|
||||||
newMount.Options = append(newMount.Options, "Z")
|
newMount.Options = append(newMount.Options, "Z")
|
||||||
|
case "shared":
|
||||||
|
newMount.Options = append(newMount.Options, "z")
|
||||||
default:
|
default:
|
||||||
return newMount, errors.Wrapf(util.ErrBadMntOption, "%s mount option must be 'private' or 'shared'", kv[0])
|
return newMount, errors.Wrapf(util.ErrBadMntOption, "%s mount option must be 'private' or 'shared'", kv[0])
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue