46 lines
1.7 KiB
Go
46 lines
1.7 KiB
Go
package shell
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"github.com/warewulf/warewulf/internal/pkg/container"
|
|
)
|
|
|
|
var (
|
|
baseCmd = &cobra.Command{
|
|
DisableFlagsInUseLine: true,
|
|
Use: "shell [OPTIONS] CONTAINER",
|
|
Short: "Run a shell inside of a Warewulf container",
|
|
Long: "Run a interactive shell inside of a warewulf CONTAINER.\n",
|
|
Aliases: []string{"chroot"},
|
|
RunE: CobraRunE,
|
|
Args: cobra.MinimumNArgs(1),
|
|
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
|
|
},
|
|
FParseErrWhitelist: cobra.FParseErrWhitelist{UnknownFlags: true},
|
|
}
|
|
binds []string
|
|
nodeName string
|
|
syncUser bool
|
|
build bool
|
|
)
|
|
|
|
func init() {
|
|
baseCmd.PersistentFlags().StringArrayVarP(&binds, "bind", "b", []string{}, `source[:destination[:{ro|copy}]]
|
|
Bind a local path which must exist into the container. If destination is not
|
|
set, uses the same path as source. "ro" binds read-only. "copy" temporarily
|
|
copies the file into the container.`)
|
|
baseCmd.PersistentFlags().StringVarP(&nodeName, "node", "n", "", "Create a read only view of the container for the given node")
|
|
baseCmd.PersistentFlags().BoolVar(&syncUser, "syncuser", false, "Synchronize UIDs/GIDs from host to container")
|
|
baseCmd.PersistentFlags().BoolVar(&build, "build", true, "(Re)build the container image automatically")
|
|
}
|
|
|
|
// GetRootCommand returns the root cobra.Command for the application.
|
|
func GetCommand() *cobra.Command {
|
|
return baseCmd
|
|
}
|