mirror of
https://github.com/juanfont/headscale.git
synced 2026-02-23 13:50:36 +01:00
These functions unconditionally return nil, which is the default cobra behavior when Args is not set.
27 lines
510 B
Go
27 lines
510 B
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(dumpConfigCmd)
|
|
}
|
|
|
|
var dumpConfigCmd = &cobra.Command{
|
|
Use: "dumpConfig",
|
|
Short: "dump current config to /etc/headscale/config.dump.yaml, integration test only",
|
|
Hidden: true,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
err := viper.WriteConfigAs("/etc/headscale/config.dump.yaml")
|
|
if err != nil {
|
|
return fmt.Errorf("dumping config: %w", err)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
}
|