mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
27 lines
919 B
Go
27 lines
919 B
Go
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/featurebasedb/featurebase/v3/ctl"
|
|
"github.com/featurebasedb/featurebase/v3/logger"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newChkSumCommand(logdest logger.Logger) *cobra.Command {
|
|
cmd := ctl.NewChkSumCommand(logdest)
|
|
ccmd := &cobra.Command{
|
|
Use: "chksum",
|
|
Short: "Digital signature of FeatureBase data",
|
|
Long: `
|
|
Generates a digital signature of all the data associated with a provided FeatureBase server
|
|
WARNING: could be slow if high cardinality fields exist
|
|
`,
|
|
RunE: usageErrorWrapper(cmd),
|
|
}
|
|
|
|
flags := ccmd.Flags()
|
|
flags.StringVar(&cmd.Host, "host", "localhost:10101", "host:port of FeatureBase.")
|
|
ctl.SetTLSConfig(flags, "", &cmd.TLS.CertificatePath, &cmd.TLS.CertificateKeyPath, &cmd.TLS.CACertPath, &cmd.TLS.SkipVerify, &cmd.TLS.EnableClientVerification)
|
|
return ccmd
|
|
}
|