enable https and key handling
- add key generation and import for warewulfd - add https port to warewulfd - configuration optiions for port and keys
This commit is contained in:
committed by
Jonathon Anderson
parent
856223dadd
commit
a1c11db8cc
@@ -4,6 +4,7 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/warewulf/warewulf/internal/app/wwctl/configure/dhcp"
|
||||
"github.com/warewulf/warewulf/internal/app/wwctl/configure/hostfile"
|
||||
"github.com/warewulf/warewulf/internal/app/wwctl/configure/keys"
|
||||
"github.com/warewulf/warewulf/internal/app/wwctl/configure/nfs"
|
||||
"github.com/warewulf/warewulf/internal/app/wwctl/configure/ssh"
|
||||
"github.com/warewulf/warewulf/internal/app/wwctl/configure/tftp"
|
||||
@@ -29,6 +30,7 @@ func init() {
|
||||
baseCmd.AddCommand(ssh.GetCommand())
|
||||
baseCmd.AddCommand(nfs.GetCommand())
|
||||
baseCmd.AddCommand(hostfile.GetCommand())
|
||||
baseCmd.AddCommand(keys.GetCommand())
|
||||
baseCmd.AddCommand(warewulfd.GetCommand())
|
||||
|
||||
baseCmd.Flags().BoolVarP(&allFunctions, "all", "a", false, "Configure all services")
|
||||
|
||||
Reference in New Issue
Block a user