From 6ab13f954658d6f0a73b750f5aa01c1b8ca61937 Mon Sep 17 00:00:00 2001 From: Antonin Reitz Date: Fri, 5 Jul 2024 15:08:56 +0200 Subject: [PATCH] artifact/setup-all.sh: disable sysctl check sysctl is a sudoer binary, VM has been tweaked correspondingly --- setup-all.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup-all.sh b/setup-all.sh index 540aa55..4941ad5 100644 --- a/setup-all.sh +++ b/setup-all.sh @@ -48,12 +48,12 @@ setup() { echo "Required Debian packages are installed" fi - if [[ "$(sysctl -n vm.max_map_count)" -lt 1048576 ]]; then - echo "sysctl vm.max_map_count < 1048576, not OK, please fix it, exiting" - exit 1 - else - echo "sysctl vm.max_map_count >= 1048576, OK" - fi + #if [[ "$(sysctl -n vm.max_map_count)" -lt 1048576 ]]; then + # echo "sysctl vm.max_map_count < 1048576, not OK, please fix it, exiting" + # exit 1 + #else + # echo "sysctl vm.max_map_count >= 1048576, OK" + #fi } build_starmalloc() {