From 8b41c415b7f7ecf7185d26f84d93bfb408711d1f Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Thu, 9 Aug 2018 22:44:03 -0700 Subject: [PATCH] add equal sign --- ci/test-large-network.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/test-large-network.sh b/ci/test-large-network.sh index 8661fac6dd..9185306cae 100755 --- a/ci/test-large-network.sh +++ b/ci/test-large-network.sh @@ -22,22 +22,22 @@ if [[ $(ulimit -n) -lt 65000 ]]; then fi if [[ $(sysctl -n net.core.rmem_default) -lt 1610612736 ]]; then - echo 'Error: rmem_default too small, run "sudo sysctl -w net.core.rmem_default 1610612736" to continue' + echo 'Error: rmem_default too small, run "sudo sysctl -w net.core.rmem_default=1610612736" to continue' exit 1 fi if [[ $(sysctl -n net.core.rmem_max) -lt 1610612736 ]]; then - echo 'Error: rmem_max too small, run "sudo sysctl -w net.core.rmem_max 1610612736" to continue' + echo 'Error: rmem_max too small, run "sudo sysctl -w net.core.rmem_max=1610612736" to continue' exit 1 fi if [[ $(sysctl -n net.core.wmem_default) -lt 1610612736 ]]; then - echo 'Error: rmem_default too small, run "sudo sysctl -w net.core.wmem_default 1610612736" to continue' + echo 'Error: rmem_default too small, run "sudo sysctl -w net.core.wmem_default=1610612736" to continue' exit 1 fi if [[ $(sysctl -n net.core.wmem_max) -lt 1610612736 ]]; then - echo 'Error: rmem_max too small, run "sudo sysctl -w net.core.wmem_max 1610612736" to continue' + echo 'Error: rmem_max too small, run "sudo sysctl -w net.core.wmem_max=1610612736" to continue' exit 1 fi