aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2003-02-18 21:28:54 +0000
committerBill Nottingham <notting@redhat.com>2003-02-18 21:28:54 +0000
commit9ff47d280c2727f3cb7ea656b3dbf6e2c63895a2 (patch)
tree541423595492988ef0f3f36a5884255b9b974251
parent6e1d6e18dd48575b3be203010d60e547b4357cff (diff)
downloadinitscripts-9ff47d280c2727f3cb7ea656b3dbf6e2c63895a2.tar
initscripts-9ff47d280c2727f3cb7ea656b3dbf6e2c63895a2.tar.gz
initscripts-9ff47d280c2727f3cb7ea656b3dbf6e2c63895a2.tar.bz2
initscripts-9ff47d280c2727f3cb7ea656b3dbf6e2c63895a2.tar.xz
initscripts-9ff47d280c2727f3cb7ea656b3dbf6e2c63895a2.zip
run fewer scripts through action, causing less output to system logs
(#49670, #75279, #81531). Not the best fix, but should shut most things up.
-rwxr-xr-xrc.d/rc2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc b/rc.d/rc
index 9f88c82c..45556431 100755
--- a/rc.d/rc
+++ b/rc.d/rc
@@ -91,7 +91,7 @@ for i in /etc/rc$runlevel.d/S* ; do
export LC_ALL=C
exec $i start
fi
- if egrep -q "(daemon |action )" $i 2>/dev/null \
+ if egrep -q "(daemon |action |success |failure |initlog )" $i 2>/dev/null \
|| [ "$subsys" = "single" -o "$subsys" = "local" ]; then
$i start
else