Add env-var and check for periodic-sync
This commit is contained in:
parent
56b47e8fb6
commit
74bc32fc2c
@ -3,6 +3,7 @@ package main
|
||||
import (
|
||||
"net"
|
||||
"os"
|
||||
"strconv"
|
||||
|
||||
envChecks "git.ruekov.eu/ruakij/routingtabletowg/lib/environmentchecks"
|
||||
ip2Map "git.ruekov.eu/ruakij/routingtabletowg/lib/iproute2mapping"
|
||||
@ -24,6 +25,8 @@ var envDefaults = map[string]string{
|
||||
|
||||
"FILTER_PROTOCOL": "-1",
|
||||
"FILTER_TABLE": "-1",
|
||||
|
||||
"PERIODIC_SYNC": "-1",
|
||||
}
|
||||
|
||||
func main() {
|
||||
@ -55,6 +58,12 @@ func main() {
|
||||
logger.Error.Fatalf("Couldn't read FILTER_TABLE '%s': %s", filterTableStr, err)
|
||||
}
|
||||
|
||||
periodicSyncStr := os.Getenv("PERIODIC_SYNC")
|
||||
periodicSync, err := strconv.Atoi(periodicSyncStr)
|
||||
if err != nil {
|
||||
logger.Error.Fatalf("Couldn't read PERIODIC_SYNC '%s': %s", periodicSyncStr, err)
|
||||
}
|
||||
|
||||
// Create filter
|
||||
filterOptions := FilterOptions{
|
||||
Table: filterTable,
|
||||
|
Loading…
x
Reference in New Issue
Block a user