diff options
author | Florian Eckert <fe@dev.tdt.de> | 2017-11-14 13:42:36 +0100 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2018-01-22 15:32:56 +0100 |
commit | a7f02bf1c81531b22814f9f0ef28677474cc14fa (patch) | |
tree | 598d667fa7085909265ea275da6444a918431819 /net | |
parent | b6c6c9e5355da9dd3c31e929a40bb5039d4461f2 (diff) |
net/keepalived: fix kmod-macvlan dependency
If the option 'use_vmac' is selected in a keepalived config and
kmod-macvlan is not installed then keepalived raise an error.
Netlink: error: Not supported, type=(16), seq=1510647577, pid=0
vmac: Error creating VMAC interface vrrp.42 for vrrp_instance xxx!!!
Add 'kmod-macvlan' to the package dependency list fixes this error.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'net')
-rw-r--r-- | net/keepalived/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/keepalived/Makefile b/net/keepalived/Makefile index b584a3280..bcf38055e 100644 --- a/net/keepalived/Makefile +++ b/net/keepalived/Makefile @@ -29,7 +29,13 @@ define Package/keepalived CATEGORY:=Network TITLE:=Failover and monitoring daemon for LVS clusters URL:=http://www.keepalived.org/ - DEPENDS:=+PACKAGE_libnl-genl:libnl-genl +libopenssl +libip4tc +IPV6:libip6tc +libxtables + DEPENDS:= \ + +PACKAGE_libnl-genl:libnl-genl \ + +libopenssl \ + +libip4tc \ + +IPV6:libip6tc \ + +libxtables \ + +kmod-macvlan endef define Package/keepalived/description |