diff options
| author | smccroskey <smccroskey@cumulusnetworks.com> | 2018-01-31 17:10:44 -0800 |
|---|---|---|
| committer | smccroskey <smccroskey@cumulusnetworks.com> | 2018-01-31 17:10:44 -0800 |
| commit | f1aaa729ebdaa17652cb15f05c779756a6075a7e (patch) | |
| tree | e6c3ccd1d297edcce15d555a8c4445c40d7abbb8 | |
| parent | 9782a8db773b8c5d9094eb3743aae43cc04e12f0 (diff) | |
debianpkg rules files: bgp-vnc is enabled by default
9782a8db773b8c5d9094eb3743aae43cc04e12f0 went with the wrong source of
truth when comments and code disagreed over whether bgp-vnc should be
enabled by default. Fix the behavior back to what it was before.
Signed-off-by: Silas McCroskey <smccroskey@cumulusnetworks.com>
| -rwxr-xr-x | debianpkg/backports/ubuntu12.04/debian/rules | 2 | ||||
| -rwxr-xr-x | debianpkg/backports/ubuntu14.04/debian/rules | 2 | ||||
| -rwxr-xr-x | debianpkg/rules | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/debianpkg/backports/ubuntu12.04/debian/rules b/debianpkg/backports/ubuntu12.04/debian/rules index 2974a653ba..551834b791 100755 --- a/debianpkg/backports/ubuntu12.04/debian/rules +++ b/debianpkg/backports/ubuntu12.04/debian/rules @@ -11,7 +11,7 @@ WANT_LDP ?= 1 WANT_PIM ?= 1 WANT_OSPFAPI ?= 1 WANT_TCP_ZEBRA ?= 0 -WANT_BGP_VNC ?= 0 +WANT_BGP_VNC ?= 1 WANT_CUMULUS_MODE ?= 0 WANT_MULTIPATH ?= 1 WANT_SNMP ?= 0 diff --git a/debianpkg/backports/ubuntu14.04/debian/rules b/debianpkg/backports/ubuntu14.04/debian/rules index f1bc264350..e2e3b15f1f 100755 --- a/debianpkg/backports/ubuntu14.04/debian/rules +++ b/debianpkg/backports/ubuntu14.04/debian/rules @@ -11,7 +11,7 @@ WANT_LDP ?= 1 WANT_PIM ?= 1 WANT_OSPFAPI ?= 1 WANT_TCP_ZEBRA ?= 0 -WANT_BGP_VNC ?= 0 +WANT_BGP_VNC ?= 1 WANT_CUMULUS_MODE ?= 0 WANT_MULTIPATH ?= 1 WANT_SNMP ?= 0 diff --git a/debianpkg/rules b/debianpkg/rules index 75a84b9e89..725ccd2528 100755 --- a/debianpkg/rules +++ b/debianpkg/rules @@ -11,7 +11,7 @@ WANT_LDP ?= 1 WANT_PIM ?= 1 WANT_OSPFAPI ?= 1 WANT_TCP_ZEBRA ?= 0 -WANT_BGP_VNC ?= 0 +WANT_BGP_VNC ?= 1 WANT_CUMULUS_MODE ?= 0 WANT_MULTIPATH ?= 1 WANT_SNMP ?= 0 |
