From 7cf6b7155cb4698cf00e4e58357d408e02b80654 Mon Sep 17 00:00:00 2001 From: jcsiadal Date: Thu, 30 Dec 2021 02:06:09 +0000 Subject: [PATCH] rm WWROOT from NFS export defaults Signed-off-by: jcsiadal --- internal/pkg/warewulfconf/defaults.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/internal/pkg/warewulfconf/defaults.go b/internal/pkg/warewulfconf/defaults.go index 8a6a97a5..05d106df 100644 --- a/internal/pkg/warewulfconf/defaults.go +++ b/internal/pkg/warewulfconf/defaults.go @@ -31,9 +31,7 @@ func defaultConfig() *ControllerConf { } Nfs := &NfsConf{ Enabled: true, - Exports: []string{"/home", - defaultDataStore, - }, + Exports: []string{"/home",}, SystemdName: "nfs-server", }