diff options
author | Bill Nottingham <notting@redhat.com> | 2003-01-14 04:42:07 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-01-14 04:42:07 +0000 |
commit | a0266b9b4f1b8e1906fd5ff198562be755574089 (patch) | |
tree | 233cb7cdb1aa9ff1805f7ff085a0afddb49b6379 | |
parent | 7773e202d5c029c6a625cdbac1cba765935bec28 (diff) | |
download | initscripts-a0266b9b4f1b8e1906fd5ff198562be755574089.tar initscripts-a0266b9b4f1b8e1906fd5ff198562be755574089.tar.gz initscripts-a0266b9b4f1b8e1906fd5ff198562be755574089.tar.bz2 initscripts-a0266b9b4f1b8e1906fd5ff198562be755574089.tar.xz initscripts-a0266b9b4f1b8e1906fd5ff198562be755574089.zip |
support NICELEVEL in the environment (#77846)
-rwxr-xr-x | rc.d/init.d/functions | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index e13042d0..45691a6e 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -136,6 +136,9 @@ daemon() { # problems with the daemon, it also closes some security problems ulimit -S -c 0 >/dev/null 2>&1 + # if they set NICELEVEL in /etc/sysconfig/foo, honor it + [ -n "$NICELEVEL" ] && nice="nice -n $NICELEVEL" + # Echo daemon [ "${BOOTUP:-}" = "verbose" -a -z "$LSB" ] && echo -n " $base" |