Files
warewulf/cmd/print_defaults/print_defaults.go
2022-09-15 11:14:26 +02:00

18 lines
277 B
Go

package main
import (
"fmt"
"github.com/hpcng/warewulf/internal/pkg/node"
)
/*
Print the build in defaults for the nodes.
Called via Makefile so that there is single upstream
source of the defaults which is FallBackConf
*/
func main() {
fmt.Println(node.FallBackConf)
}