mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
125 lines
2.8 KiB
Go
125 lines
2.8 KiB
Go
// See cmd package.
|
|
package main
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"github.com/zrepl/zrepl/client"
|
|
"github.com/zrepl/zrepl/config"
|
|
"github.com/zrepl/zrepl/daemon"
|
|
"log"
|
|
"os"
|
|
"fmt"
|
|
)
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Use: "zrepl",
|
|
Short: "ZFS dataset replication",
|
|
Long: `Replicate ZFS filesystems & volumes between pools:
|
|
|
|
- push & pull mode
|
|
- automatic snapshot creation & pruning
|
|
- local / over the network
|
|
- ACLs instead of blank SSH access`,
|
|
}
|
|
|
|
var daemonCmd = &cobra.Command{
|
|
Use: "daemon",
|
|
Short: "daemon",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return daemon.Run(conf)
|
|
},
|
|
}
|
|
|
|
var wakeupCmd = &cobra.Command{
|
|
Use: "wakeup",
|
|
Short: "wake up jobs",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return client.RunWakeup(conf, args)
|
|
},
|
|
}
|
|
|
|
var statusCmd = &cobra.Command{
|
|
Use: "status",
|
|
Short: "status",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return client.RunStatus(conf, args)
|
|
},
|
|
}
|
|
|
|
var stdinserverCmd = &cobra.Command{
|
|
Use: "stdinserver CLIENT_IDENTITY",
|
|
Short: "start in stdinserver mode (from authorized_keys file)",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return client.RunStdinserver(conf, args)
|
|
},
|
|
}
|
|
|
|
|
|
var bashcompCmd = &cobra.Command{
|
|
Use: "bashcomp path/to/out/file",
|
|
Short: "generate bash completions",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if len(args) != 1 {
|
|
fmt.Fprintf(os.Stderr, "specify exactly one positional agument\n")
|
|
cmd.Usage()
|
|
os.Exit(1)
|
|
}
|
|
if err := rootCmd.GenBashCompletionFile(args[0]); err != nil {
|
|
fmt.Fprintf(os.Stderr, "error generating bash completion: %s", err)
|
|
os.Exit(1)
|
|
}
|
|
},
|
|
Hidden: true,
|
|
}
|
|
|
|
var configcheckCmd = &cobra.Command{
|
|
Use: "configcheck",
|
|
Short: "validate config file",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
conf, err := config.ParseConfig(rootArgs.configFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return client.RunConfigcheck(conf, args)
|
|
},
|
|
}
|
|
|
|
var rootArgs struct {
|
|
configFile string
|
|
}
|
|
|
|
func init() {
|
|
//cobra.OnInitialize(initConfig)
|
|
rootCmd.PersistentFlags().StringVar(&rootArgs.configFile, "config", "", "config file path")
|
|
rootCmd.AddCommand(daemonCmd)
|
|
rootCmd.AddCommand(wakeupCmd)
|
|
rootCmd.AddCommand(statusCmd)
|
|
rootCmd.AddCommand(stdinserverCmd)
|
|
rootCmd.AddCommand(bashcompCmd)
|
|
rootCmd.AddCommand(configcheckCmd)
|
|
}
|
|
|
|
func main() {
|
|
|
|
if err := rootCmd.Execute(); err != nil {
|
|
log.Printf("error executing root command: %s", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|