1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-09 00:00:05 +01:00

Change default config location to /etc/birdwatcher

This commit is contained in:
Johannes Moos 2018-04-12 11:24:22 +02:00 committed by Benedikt Rudolph
parent 46356aa9eb
commit a196f8ada0

View file

@ -109,7 +109,7 @@ func PrintServiceInfo(conf *Config, birdConf bird.BirdConfig) {
func main() {
bird6 := flag.Bool("6", false, "Use bird6 instead of bird")
workerPoolSize := flag.Int("worker-pool-size", 8, "Number of go routines used to parse routing tables concurrently")
configfile := flag.String("config", "./etc/ecix/birdwatcher.conf", "Configuration file location")
configfile := flag.String("config", "etc/birdwatcher/birdwatcher.conf", "Configuration file location")
flag.Parse()
bird.WorkerPoolSize = *workerPoolSize