reCoreD-UI/cmd/config/dns.go

35 lines
587 B
Go
Raw Normal View History

2024-04-03 09:05:12 +00:00
package config
import (
"reCoreD-UI/controllers"
2024-04-09 08:28:18 +00:00
"reCoreD-UI/database"
2024-04-03 09:05:12 +00:00
"github.com/urfave/cli/v2"
)
var DNSCommand *cli.Command
func init() {
DNSCommand = &cli.Command{
2024-04-09 08:28:18 +00:00
Name: "dns",
2024-04-03 09:05:12 +00:00
Usage: "Config DNS Settings",
Flags: []cli.Flag{
&cli.StringSliceFlag{
2024-04-09 08:28:18 +00:00
Name: "servers",
Usage: "dns servers",
Aliases: []string{"s"},
2024-04-03 09:05:12 +00:00
Required: true,
},
},
Action: setDNS,
}
}
func setDNS(c *cli.Context) error {
2024-04-09 08:28:18 +00:00
if err := database.Connect(c.String("mysql-dsn")); err != nil {
2024-04-03 09:05:12 +00:00
return err
}
2024-04-09 08:28:18 +00:00
return controllers.SetupDNS(c.StringSlice("servers")...)
2024-04-03 09:05:12 +00:00
}