From 2626f1b84bec45f822808bd84729bb8a807c754c Mon Sep 17 00:00:00 2001 From: maidlover <117573165+maidl0ver@users.noreply.github.com> Date: Mon, 28 Jul 2025 18:14:54 +0000 Subject: [PATCH] Rename mount key to mountoptions Signed-off-by: maidl0ver Signed-off-by: maidlover <117573165+maidl0ver@users.noreply.github.com> --- proxmox/nodes/containers/containers_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox/nodes/containers/containers_types.go b/proxmox/nodes/containers/containers_types.go index 1b1d8825..f6df4a81 100644 --- a/proxmox/nodes/containers/containers_types.go +++ b/proxmox/nodes/containers/containers_types.go @@ -546,7 +546,7 @@ func (r *CustomRootFS) EncodeValues(key string, v *url.Values) error { if r.MountOptions != nil { if len(*r.MountOptions) > 0 { - values = append(values, fmt.Sprintf("mount=%s", strings.Join(*r.MountOptions, ";"))) + values = append(values, fmt.Sprintf("mountoptions=%s", strings.Join(*r.MountOptions, ";"))) } }