go_tab-magic/cmd/main.go

39 lines
836 B
Go

package main
import (
"flag"
"log"
"git.linuxrocker.com/mattburchett/go_tab-magic/pkg/config"
"git.linuxrocker.com/mattburchett/go_tab-magic/pkg/resolver"
"git.linuxrocker.com/mattburchett/go_tab-magic/pkg/shell"
)
func main() {
var c string
var user string
var debug bool
flag.StringVar(&c, "config", "", "Configuration to load")
flag.StringVar(&user, "user", "", "user for aliases")
flag.BoolVar(&debug, "debug", false, "Enables Debugging Mode")
flag.Parse()
// Stop the app if they're missing required flags.
if c == "" {
log.Fatal("You need to specify a configuration file.")
}
if user == "" {
log.Fatal("You must specify a username.")
}
cfg, err := config.GetConfig(c, debug)
if err != nil {
log.Fatal(err)
}
data := resolver.PerformZoneTransfer(cfg)
shell.CreateShellAliases(data, user, cfg)
}