You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
337 B
23 lines
337 B
package main |
|
|
|
import ( |
|
"github.com/spf13/cobra" |
|
) |
|
|
|
// Command |
|
var writeCmd = &cobra.Command{ |
|
Use: "write", |
|
Short: "rewrites all config files", |
|
RunE: func(_ *cobra.Command, _ []string) error { |
|
m, err := cfg.LoadZones() |
|
if err != nil { |
|
return err |
|
} |
|
|
|
return m.SyncAll() |
|
}, |
|
} |
|
|
|
func init() { |
|
rootCmd.AddCommand(writeCmd) |
|
}
|
|
|