From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 Description of problem: The irqbalance init script contains a logical error and fails to touch the the file /var/lock/subsys/irqbalance. And due to this it get started multiple times (e.g. booting to level 3 and changing to level 5 later manually) Version-Release number of selected component (if applicable): kernel-utils-2.4-9.1.131 How reproducible: Always Steps to Reproduce: 1. boot to level 3 2. login 3. change to level 5 Additional info: fix: --- /etc/rc.d/init.d/irqbalance.orig 2004-12-02 10:09:35.586466571 +0100 +++ /etc/rc.d/init.d/irqbalance 2004-12-02 10:09:44.630434625 +0100 @@ -47,7 +47,7 @@ daemon irqbalance $ONESHOT RETVAL=$? echo - [ $RETVAL -eq 0 -a -n "$ONESHOT" ] && touch /var/lock/subsys/irqbalance + [ $RETVAL -eq 0 -a -z "$ONESHOT" ] && touch /var/lock/subsys/irqbalance return $RETVAL }
Created attachment 107760 [details] patch.
Fedora Core 2 is now maintained by the Fedora Legacy project for security updates only. If this problem is a security issue, please reopen and reassign to the Fedora Legacy product. If it is not a security issue and hasn't been resolved in the current FC3 updates or in the FC4 test release, reopen and change the version to match.
Closing per previous comment.