From 0e64e107ba1439c00054cdf9668cfa271e28fefa Mon Sep 17 00:00:00 2001 From: Shion Tanaka Date: Mon, 22 Jan 2024 02:41:48 +0900 Subject: [PATCH] Fix Mount Unit Option Signed-off-by: Shion Tanaka --- pkg/machine/applehv/machine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/machine/applehv/machine.go b/pkg/machine/applehv/machine.go index e6d60a792d..1d39edfcea 100644 --- a/pkg/machine/applehv/machine.go +++ b/pkg/machine/applehv/machine.go @@ -1149,7 +1149,7 @@ func generateSystemDFilesForVirtiofsMounts(mounts []machine.VirtIoFs) []ignition mountUnit.Add("Mount", "What", "%s") mountUnit.Add("Mount", "Where", "%s") mountUnit.Add("Mount", "Type", "virtiofs") - mountUnit.Add("Mount", "Option", "defcontext=\"system_u:object_r:nfs_t:s0\"") + mountUnit.Add("Mount", "Options", "defcontext=\"system_u:object_r:nfs_t:s0\"") mountUnit.Add("Install", "WantedBy", "multi-user.target") mountUnitFile, err := mountUnit.ToString() if err != nil {