diff options
author | Hitoshi Irino <irino@sfc.wide.ad.jp> | 2020-01-13 18:55:51 +0900 |
---|---|---|
committer | Hitoshi Irino <irino@sfc.wide.ad.jp> | 2020-01-13 18:55:51 +0900 |
commit | 05a7e0e993de741a6a674305ed93562e93532ec4 (patch) | |
tree | 410c847550726ce246c074814874b408101fbdfa /internal/pkg/config | |
parent | 377213886c32d869e52bad434dda764bc69f6a53 (diff) |
Supporting FRR7.2
Diffstat (limited to 'internal/pkg/config')
-rw-r--r-- | internal/pkg/config/default.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/pkg/config/default.go b/internal/pkg/config/default.go index c86ada57..bf8b0791 100644 --- a/internal/pkg/config/default.go +++ b/internal/pkg/config/default.go @@ -422,7 +422,7 @@ func setDefaultConfigValuesWithViper(v *viper.Viper, b *BgpConfigSet) error { } //SoftwareName for Zebra - allowableZebraSoftwareName := []string{"", "quagga", "frr3", "frr4", "frr5", "frr6", "frr7", "frr7.1", "cumulus"} + allowableZebraSoftwareName := []string{"", "quagga", "frr3", "frr4", "frr5", "frr6", "frr7", "frr7.1", "frr7.2", "cumulus"} isAllowable := false for _, allowable := range allowableZebraSoftwareName { if b.Zebra.Config.SoftwareName == allowable { |