* Sync FD limit and max maps to 500k (cherry picked from commit11951eb009
) * Expand system tuning docs (cherry picked from commit5354df8c1c
) * clippy Co-authored-by: Trent Nelson <trent@solana.com>
13 lines
266 B
Bash
Executable File
13 lines
266 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
HERE="$(dirname "$0")"
|
|
|
|
# shellcheck source=ci/setup-new-buildkite-agent/utils.sh
|
|
source "$HERE"/utils.sh
|
|
|
|
ensure_env || exit 1
|
|
|
|
# Allow more files to be opened by a user
|
|
echo "* - nofile 500000" > /etc/security/limits.d/90-solana-nofiles.conf
|
|
|