diff options
author | Bill Nottingham <notting@redhat.com> | 2003-02-18 21:28:54 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-02-18 21:28:54 +0000 |
commit | 9ff47d280c2727f3cb7ea656b3dbf6e2c63895a2 (patch) | |
tree | 541423595492988ef0f3f36a5884255b9b974251 /rc.d/rc | |
parent | 6e1d6e18dd48575b3be203010d60e547b4357cff (diff) | |
download | initscripts-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.
Diffstat (limited to 'rc.d/rc')
-rwxr-xr-x | rc.d/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |