#!/bin/sh
# If we're running as root, allow large amounts of open files.
USER=$(whoami)

# If a ulimit call fails, exit immediately.
set -e

if [ "$USER" = "root" ]
then
    # Enable large number of open files
    ulimit -n 65536
fi

# Enable core dumps for everything
ulimit -c unlimited
exec "$@"
