blob: e929738d4d29f83e6fc81059b024d45a4bfd2f61 [file] [log] [blame]
#!/usr/bin/env bash
prefix=@prefix@
exec_prefix=@exec_prefix@
deploy_dir=@sysconfdir@/@PACKAGE@
# Increase the default number of open file descriptors.
ulimit -n 8192
PROGRAM=${1}
shift # Remove PROGRAM from the argument list (since we pass ${@} below).
test -e ${deploy_dir}/${PROGRAM}-env.sh && \
. ${deploy_dir}/${PROGRAM}-env.sh
nohup @sbindir@/${PROGRAM} ${@} </dev/null >/dev/null 2>&1 &