11 lines
207 B
Go
11 lines
207 B
Go
package ssh
|
|
|
|
import (
|
|
"github.com/hpcng/warewulf/internal/pkg/configure"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func CobraRunE(cmd *cobra.Command, args []string) error {
|
|
return configure.Configure("SSH", setShow)
|
|
}
|