diff --git a/tools/fixup_stuff.sh b/tools/fixup_stuff.sh index 750849db68..f24ac40ad5 100755 --- a/tools/fixup_stuff.sh +++ b/tools/fixup_stuff.sh @@ -83,6 +83,11 @@ function fixup_fedora { if is_package_installed python3-setuptools; then sudo dnf reinstall -y python3-setuptools fi + # Workaround CentOS 8-stream iputils and systemd Bug + # https://bugzilla.redhat.com/show_bug.cgi?id=2037807 + if [[ $os_VENDOR == "CentOSStream" && $os_RELEASE -eq 8 ]]; then + sudo sysctl -w net.ipv4.ping_group_range='0 2147483647' + fi } function fixup_suse {