Files
warewulf/internal/app/wwctl/container/syncuser/root.go
jason yang 4072730172 add container build after container sync
Signed-off-by: jason yang <xyang@ciq.com>
2024-02-14 21:18:41 -07:00

40 lines
1.2 KiB
Go

package syncuser
import (
"github.com/spf13/cobra"
"github.com/warewulf/warewulf/internal/pkg/container"
)
var (
baseCmd = &cobra.Command{
DisableFlagsInUseLine: true,
Use: "syncuser [OPTIONS] CONTAINER",
Short: "Synchronizes user in container",
Long: `Synchronize the uids and gids from the host to the container.
Users/groups which are only present in the container will be preserved if no
uid/gid collision is detected. File ownerships are also changed.`,
RunE: CobraRunE,
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
if len(args) != 0 {
return nil, cobra.ShellCompDirectiveNoFileComp
}
list, _ := container.ListSources()
return list, cobra.ShellCompDirectiveNoFileComp
},
Args: cobra.MinimumNArgs(1),
}
write bool
build bool
)
func init() {
baseCmd.PersistentFlags().BoolVar(&write, "write", false, "Synchronize uis/gids and write files in container")
baseCmd.PersistentFlags().BoolVar(&build, "build", false, "Build container after syncuser is completed")
}
// GetRootCommand returns the root cobra.Command for the application.
func GetCommand() *cobra.Command {
return baseCmd
}