Unverified Commit 03f46509 authored by Nils Goroll's avatar Nils Goroll

Set/Limit ulimit -n to a safe value

parent 3814cca1
#!/bin/bash
# XXX observed a bug (not properly understood as of now) where
# some component causes haproxy to go haywire for too large a
# ulimit.
# the offending value seems be between 1<<25 and 1<<26
#
# 1<<25
ulimit -n 33554432 || true
set -e
set -u
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment