diff options
author | Bill Nottingham <notting@redhat.com> | 2000-07-13 20:00:10 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-07-13 20:00:10 +0000 |
commit | 7d5dc780a8260e7b107bfd82a99bbe08670b70c1 (patch) | |
tree | e94bf807a646cc1a8c162f19cffc86b76fe825d3 /rc.d/init.d/functions | |
parent | 6fd8ae953acae647fc38ede7829f7e333f96bc94 (diff) | |
download | initscripts-7d5dc780a8260e7b107bfd82a99bbe08670b70c1.tar initscripts-7d5dc780a8260e7b107bfd82a99bbe08670b70c1.tar.gz initscripts-7d5dc780a8260e7b107bfd82a99bbe08670b70c1.tar.bz2 initscripts-7d5dc780a8260e7b107bfd82a99bbe08670b70c1.tar.xz initscripts-7d5dc780a8260e7b107bfd82a99bbe08670b70c1.zip |
chuck ulimit errors to /dev/null
Diffstat (limited to 'rc.d/init.d/functions')
-rwxr-xr-x | rc.d/init.d/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index fdcc11dc..3922af3a 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -103,7 +103,7 @@ daemon() { # 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 + ulimit -S -c 0 >/dev/null 2>&1 # Echo daemon [ "$BOOTUP" = "verbose" ] && echo -n " $base" |