2022-03-22 11:03:15 -04:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2022-05-13 05:56:43 -04:00
|
|
|
"github.com/edgelesssys/constellation/internal/constants"
|
2022-03-22 11:03:15 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var rootCmd = &cobra.Command{
|
|
|
|
Use: "cdbg",
|
|
|
|
Short: "Constellation debugging client",
|
|
|
|
Long: `cdbg is the constellation debugging client.
|
2022-06-29 09:26:29 -04:00
|
|
|
It connects to CoreOS instances running debugd and deploys a self-compiled version of the bootstrapper.`,
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Execute starts the CLI.
|
|
|
|
func Execute() {
|
2022-03-25 07:50:07 -04:00
|
|
|
if err := rootCmd.Execute(); err != nil {
|
2022-03-22 11:03:15 -04:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2022-05-16 11:47:25 -04:00
|
|
|
rootCmd.PersistentFlags().String("config", constants.ConfigFilename, "Constellation config file")
|
|
|
|
rootCmd.PersistentFlags().String("cdbg-config", constants.DebugdConfigFilename, "debugd config file")
|
2022-03-22 11:03:15 -04:00
|
|
|
}
|