mirror of
https://github.com/containers/podman.git
synced 2025-06-23 02:18:13 +08:00
fix: swapped volume relabel option values
Signed-off-by: Xabier Napal <xabiernapal@pm.me>
This commit is contained in:
@ -337,9 +337,9 @@ func getBindMount(args []string) (spec.Mount, error) {
|
||||
}
|
||||
switch kv[1] {
|
||||
case "private":
|
||||
newMount.Options = append(newMount.Options, "z")
|
||||
case "shared":
|
||||
newMount.Options = append(newMount.Options, "Z")
|
||||
case "shared":
|
||||
newMount.Options = append(newMount.Options, "z")
|
||||
default:
|
||||
return newMount, errors.Wrapf(util.ErrBadMntOption, "%s mount option must be 'private' or 'shared'", kv[0])
|
||||
}
|
||||
|
Reference in New Issue
Block a user