aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d
diff options
context:
space:
mode:
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/init.d/functions5
1 files changed, 2 insertions, 3 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions
index 0d3d755c..2293a20f 100755
--- a/rc.d/init.d/functions
+++ b/rc.d/init.d/functions
@@ -133,9 +133,8 @@ daemon() {
[ -n "${pid:-}" -a -z "${force:-}" ] && return
- # make sure it doesn't core dump anywhere; while this could mask
- # problems with the daemon, it also closes some security problems
- ulimit -S -c 0 >/dev/null 2>&1
+ # make sure it doesn't core dump anywhere unless requested
+ ulimit -S -c ${DAEMON_COREFILE_LIMIT:-0} >/dev/null 2>&1
# if they set NICELEVEL in /etc/sysconfig/foo, honor it
[ -n "$NICELEVEL" ] && nice="nice -n $NICELEVEL"