mirror of
https://github.com/vishvananda/netlink
synced 2025-02-13 18:46:56 +00:00
Testing and functionality for the use of HFSC has been implemented. The use of service curves is implenented closely as to how they behave with the TC implementation. Automated checks and testing were succesful.
15 lines
501 B
YAML
15 lines
501 B
YAML
language: go
|
|
before_script:
|
|
# make sure we keep path in tact when we sudo
|
|
- sudo sed -i -e 's/^Defaults\tsecure_path.*$//' /etc/sudoers
|
|
# modprobe ip_gre or else the first gre device can't be deleted
|
|
- sudo modprobe ip_gre
|
|
# modprobe nf_conntrack for the conntrack testing
|
|
- sudo modprobe nf_conntrack
|
|
- sudo modprobe nf_conntrack_netlink
|
|
- sudo modprobe nf_conntrack_ipv4
|
|
- sudo modprobe nf_conntrack_ipv6
|
|
- sudo modprobe sch_hfsc
|
|
install:
|
|
- go get github.com/vishvananda/netns
|