2017-07-06 13:03:44 +02:00
|
|
|
// zrepl replicates ZFS filesystems & volumes between pools
|
|
|
|
//
|
|
|
|
// Code Organization
|
|
|
|
//
|
|
|
|
// The cmd package uses github.com/spf13/cobra for its CLI.
|
|
|
|
//
|
|
|
|
// It combines the other packages in the zrepl project to implement zrepl functionality.
|
|
|
|
//
|
|
|
|
// Each subcommand's code is in the corresponding *.go file.
|
|
|
|
// All other *.go files contain code shared by the subcommands.
|
|
|
|
package cmd
|
2017-04-14 19:26:32 +02:00
|
|
|
|
2017-04-26 20:21:18 +02:00
|
|
|
import (
|
2017-07-06 13:03:44 +02:00
|
|
|
"github.com/spf13/cobra"
|
2017-09-23 18:20:22 +02:00
|
|
|
"github.com/zrepl/zrepl/logger"
|
2017-04-26 20:21:18 +02:00
|
|
|
)
|
|
|
|
|
2017-09-22 14:13:58 +02:00
|
|
|
//
|
|
|
|
//type Logger interface {
|
|
|
|
// Printf(format string, v ...interface{})
|
|
|
|
//}
|
|
|
|
|
2017-09-23 18:20:22 +02:00
|
|
|
type Logger = *logger.Logger
|
2017-05-03 18:32:11 +02:00
|
|
|
|
2017-07-06 13:03:44 +02:00
|
|
|
var RootCmd = &cobra.Command{
|
|
|
|
Use: "zrepl",
|
|
|
|
Short: "ZFS dataset replication",
|
|
|
|
Long: `Replicate ZFS filesystems & volumes between pools:
|
2017-04-14 19:26:32 +02:00
|
|
|
|
2017-07-06 13:03:44 +02:00
|
|
|
- push & pull mode
|
|
|
|
- automatic snapshot creation & pruning
|
|
|
|
- local / over the network
|
|
|
|
- ACLs instead of blank SSH access`,
|
2017-04-26 20:21:18 +02:00
|
|
|
}
|
2017-04-14 19:26:32 +02:00
|
|
|
|
2017-07-06 13:03:44 +02:00
|
|
|
var rootArgs struct {
|
|
|
|
configFile string
|
2017-04-14 19:26:32 +02:00
|
|
|
}
|
|
|
|
|
2017-07-06 13:03:44 +02:00
|
|
|
func init() {
|
2017-09-17 18:20:05 +02:00
|
|
|
//cobra.OnInitialize(initConfig)
|
2017-07-06 13:03:44 +02:00
|
|
|
RootCmd.PersistentFlags().StringVar(&rootArgs.configFile, "config", "", "config file path")
|
2017-05-16 16:57:24 +02:00
|
|
|
}
|