Merge "Enable sctp module in the fullstack Centos node" into stable/xena

This commit is contained in:
Zuul 2022-03-28 17:14:45 +00:00 committed by Gerrit Code Review
commit d7d43f7a8c
1 changed files with 4 additions and 0 deletions

View File

@ -322,6 +322,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!"