Files
warewulf/internal/pkg/config/ssh.go
Christian Goll 21150d2975 make created ssh keys configureable
Signed-off-by: Christian Goll <cgoll@suse.com>
2024-05-01 14:27:39 -06:00

6 lines
128 B
Go

package config
type SSHConf struct {
KeyTypes []string `yaml:"key types" default:"[\"rsa\",\"dsa\",\"ecdsa\",\"ed25519\"]"`
}