Author: glen Date: Fri Nov 9 02:54:55 2007 New Revision: 9033 Modified: rc-scripts/trunk/rc.d/rc.shutdown Log: - blogd might be already down and it might had been started manually
Modified: rc-scripts/trunk/rc.d/rc.shutdown ============================================================================== --- rc-scripts/trunk/rc.d/rc.shutdown (original) +++ rc-scripts/trunk/rc.d/rc.shutdown Fri Nov 9 02:54:55 2007 @@ -29,11 +29,10 @@ previous=$2 # Stop blogd before umounting /var -if [ -x /sbin/blogd ] && ! is_no "$RC_BOOTLOG"; then - killall -QUIT blogd +if [ -x /sbin/blogd ]; then + killall -q -QUIT blogd fi - # check for other processes. # there could be none if all services were terminated properly # pgrep -g 0 requires procps >= 3.2.6-1.1 _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
