From fde292a84ee4766c2dcc25808108bb8dfae72de3 Mon Sep 17 00:00:00 2001 From: Gregory Kurtzer Date: Fri, 23 Apr 2021 22:03:40 -0700 Subject: [PATCH] Change default value for kernelargs `rootfstype=rootfs` --- internal/pkg/node/constructors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/node/constructors.go b/internal/pkg/node/constructors.go index 8e97419b..b84a24af 100644 --- a/internal/pkg/node/constructors.go +++ b/internal/pkg/node/constructors.go @@ -49,7 +49,7 @@ func (self *nodeYaml) FindAllNodes() ([]NodeInfo, error) { n.Ipxe.SetDefault("default") n.Init.SetDefault("/sbin/init") n.Root.SetDefault("initramfs") - n.KernelArgs.SetDefault("quiet crashkernel=no vga=791 rootfstype=tmpfs") + n.KernelArgs.SetDefault("quiet crashkernel=no vga=791 rootfstype=rootfs") fullname := strings.SplitN(nodename, ".", 2) if len(fullname) > 1 {