mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-27 12:05:26 +00:00
Refactor cli commands
This commit is contained in:
parent
3a07360b6e
commit
04dffcc4ae
@ -1,77 +1,16 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"log"
|
"log"
|
||||||
"os"
|
|
||||||
|
|
||||||
"github.com/juanfont/headscale/cmd/headscale/cli"
|
"github.com/juanfont/headscale/cmd/headscale/cli"
|
||||||
"github.com/spf13/cobra"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var headscaleCmd = &cobra.Command{
|
|
||||||
Use: "headscale",
|
|
||||||
Short: "headscale - a Tailscale control server",
|
|
||||||
Long: `
|
|
||||||
headscale is an open source implementation of the Tailscale control server
|
|
||||||
|
|
||||||
Juan Font Alonso <juanfontalonso@gmail.com> - 2021
|
|
||||||
https://gitlab.com/juanfont/headscale`,
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
err := cli.LoadConfig("")
|
err := cli.LoadConfig("")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf(err.Error())
|
log.Fatalf(err.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
headscaleCmd.AddCommand(cli.NamespaceCmd)
|
cli.Execute()
|
||||||
headscaleCmd.AddCommand(cli.NodeCmd)
|
|
||||||
headscaleCmd.AddCommand(cli.PreauthkeysCmd)
|
|
||||||
headscaleCmd.AddCommand(cli.RoutesCmd)
|
|
||||||
headscaleCmd.AddCommand(cli.ServeCmd)
|
|
||||||
headscaleCmd.AddCommand(cli.VersionCmd)
|
|
||||||
|
|
||||||
cli.NodeCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
|
||||||
err = cli.NodeCmd.MarkPersistentFlagRequired("namespace")
|
|
||||||
if err != nil {
|
|
||||||
log.Fatalf(err.Error())
|
|
||||||
}
|
|
||||||
|
|
||||||
cli.PreauthkeysCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
|
||||||
err = cli.PreauthkeysCmd.MarkPersistentFlagRequired("namespace")
|
|
||||||
if err != nil {
|
|
||||||
log.Fatalf(err.Error())
|
|
||||||
}
|
|
||||||
|
|
||||||
cli.RoutesCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
|
||||||
err = cli.RoutesCmd.MarkPersistentFlagRequired("namespace")
|
|
||||||
if err != nil {
|
|
||||||
log.Fatalf(err.Error())
|
|
||||||
}
|
|
||||||
|
|
||||||
cli.NamespaceCmd.AddCommand(cli.CreateNamespaceCmd)
|
|
||||||
cli.NamespaceCmd.AddCommand(cli.ListNamespacesCmd)
|
|
||||||
cli.NamespaceCmd.AddCommand(cli.DestroyNamespaceCmd)
|
|
||||||
|
|
||||||
cli.NodeCmd.AddCommand(cli.ListNodesCmd)
|
|
||||||
cli.NodeCmd.AddCommand(cli.RegisterCmd)
|
|
||||||
cli.NodeCmd.AddCommand(cli.DeleteCmd)
|
|
||||||
|
|
||||||
cli.RoutesCmd.AddCommand(cli.ListRoutesCmd)
|
|
||||||
cli.RoutesCmd.AddCommand(cli.EnableRouteCmd)
|
|
||||||
|
|
||||||
cli.PreauthkeysCmd.AddCommand(cli.ListPreAuthKeys)
|
|
||||||
cli.PreauthkeysCmd.AddCommand(cli.CreatePreAuthKeyCmd)
|
|
||||||
|
|
||||||
cli.CreatePreAuthKeyCmd.PersistentFlags().Bool("reusable", false, "Make the preauthkey reusable")
|
|
||||||
cli.CreatePreAuthKeyCmd.PersistentFlags().Bool("ephemeral", false, "Preauthkey for ephemeral nodes")
|
|
||||||
cli.CreatePreAuthKeyCmd.Flags().StringP("expiration", "e", "", "Human-readable expiration of the key (30m, 24h, 365d...)")
|
|
||||||
|
|
||||||
headscaleCmd.PersistentFlags().StringP("output", "o", "", "Output format. Empty for human-readable, 'json' or 'json-line'")
|
|
||||||
|
|
||||||
if err := headscaleCmd.Execute(); err != nil {
|
|
||||||
fmt.Println(err)
|
|
||||||
os.Exit(-1)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user