mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 17:03:06 +00:00
Check persistnt flag errors
This commit is contained in:
parent
5648337e68
commit
68c21faf64
1 changed files with 16 additions and 4 deletions
|
@ -92,16 +92,28 @@ func main() {
|
||||||
headscaleCmd.AddCommand(versionCmd)
|
headscaleCmd.AddCommand(versionCmd)
|
||||||
|
|
||||||
cli.NodeCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
cli.NodeCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
||||||
cli.NodeCmd.MarkPersistentFlagRequired("namespace")
|
err = cli.NodeCmd.MarkPersistentFlagRequired("namespace")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
cli.PreauthkeysCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
cli.PreauthkeysCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
||||||
cli.PreauthkeysCmd.MarkPersistentFlagRequired("namespace")
|
err = cli.PreauthkeysCmd.MarkPersistentFlagRequired("namespace")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
cli.RegisterCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
cli.RegisterCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
||||||
cli.RegisterCmd.MarkPersistentFlagRequired("namespace")
|
err = cli.RegisterCmd.MarkPersistentFlagRequired("namespace")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
cli.RoutesCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
cli.RoutesCmd.PersistentFlags().StringP("namespace", "n", "", "Namespace")
|
||||||
cli.RoutesCmd.MarkPersistentFlagRequired("namespace")
|
err = cli.RoutesCmd.MarkPersistentFlagRequired("namespace")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf(err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
cli.NamespaceCmd.AddCommand(cli.CreateNamespaceCmd)
|
cli.NamespaceCmd.AddCommand(cli.CreateNamespaceCmd)
|
||||||
cli.NamespaceCmd.AddCommand(cli.ListNamespacesCmd)
|
cli.NamespaceCmd.AddCommand(cli.ListNamespacesCmd)
|
||||||
|
|
Loading…
Reference in a new issue