Drop the 's' in the services command.

This commit is contained in:
Gregory Kurtzer
2020-12-01 14:38:21 -08:00
parent 04260bd5f2
commit d5f47bec14
4 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ import (
"github.com/hpcng/warewulf/internal/app/wwctl/node"
"github.com/hpcng/warewulf/internal/app/wwctl/overlay"
"github.com/hpcng/warewulf/internal/app/wwctl/profile"
"github.com/hpcng/warewulf/internal/app/wwctl/services"
"github.com/hpcng/warewulf/internal/app/wwctl/service"
"github.com/hpcng/warewulf/internal/app/wwctl/vnfs"
"github.com/hpcng/warewulf/internal/pkg/wwlog"
@@ -38,7 +38,7 @@ func init() {
rootCmd.AddCommand(kernel.GetCommand())
rootCmd.AddCommand(group.GetCommand())
rootCmd.AddCommand(profile.GetCommand())
rootCmd.AddCommand(services.GetCommand())
rootCmd.AddCommand(service.GetCommand())
}

View File

@@ -1,4 +1,4 @@
package services
package service
import (
"github.com/hpcng/warewulf/internal/app/wwctl/services/dhcp"
@@ -7,7 +7,7 @@ import (
var (
baseCmd = &cobra.Command{
Use: "services",
Use: "service",
Short: "Initialize Warewulf services",
Long: "Warewulf Initialization",
}