From 96191cac83838e4358d6599e1476633cc58dd1f7 Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Sat, 28 Sep 2024 21:45:40 -0600 Subject: [PATCH] output enhancements --- main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 3672b9b..3d207a5 100644 --- a/main.go +++ b/main.go @@ -28,7 +28,6 @@ func main() { } blockListName := os.Args[1] jsonListFile := os.Args[2] - fmt.Printf("generating blocklist %s\n", blockListName) // Load blocklist config file countries, err := readJsonListFile(jsonListFile) @@ -38,6 +37,7 @@ func main() { // Download up to date geoip CIDR data for i := range countries { + fmt.Println("downloading cidr list for country: ", countries[i].Name) countries[i].v4Addresses, err = downloadAddressList(countries[i].Url) if err != nil { log.Fatalf("failed to download address list for county'%s': %v", countries[i].Name, err) @@ -45,10 +45,12 @@ func main() { } // Generate mikrotik block list + fmt.Printf("generating blocklist %s.rsc\n", blockListName) err = generateOutput(countries, blockListName) if err != nil { log.Fatalf("failed to generate output file: %v", err) } + fmt.Printf("\n\nCopy the file the router, then import the address list\n\n\t/import %s.rsc\n", blockListName) } func generateOutput(countries []Country, blockListName string) error {