2019-09-03 07:45:20 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
HERE="$(dirname "$0")"
|
|
|
|
|
2020-04-20 16:43:13 -07:00
|
|
|
# shellcheck source=ci/setup-new-buildkite-agent/utils.sh
|
2019-09-03 07:45:20 -07:00
|
|
|
source "$HERE"/utils.sh
|
|
|
|
|
|
|
|
ensure_env || exit 1
|
|
|
|
|
|
|
|
# Allow more files to be opened by a user
|
2021-02-01 20:30:15 -08:00
|
|
|
echo "* - nofile 700000" > /etc/security/limits.d/90-solana-nofiles.conf
|
2019-09-03 07:45:20 -07:00
|
|
|
|