Merge "Enable sctp module in the fullstack Centos node"

This commit is contained in:
Zuul 2022-03-15 15:42:06 +00:00 committed by Gerrit Code Review
commit 775a2382b3

View File

@ -327,6 +327,10 @@ if [[ "$VENV" =~ "dsvm-fullstack" ]]; then
_configure_iptables_rules
# This module only exists on older kernels, built-in otherwise
modinfo ip_conntrack_proto_sctp 1> /dev/null 2>&1 && sudo modprobe ip_conntrack_proto_sctp
if is_fedora; then
install_package kernel-modules-extra-`uname -r`
sudo modprobe sctp
fi
fi
echo "Phew, we're done!"