https://bugzilla.novell.com/show_bug.cgi?id=737869 https://bugzilla.novell.com/show_bug.cgi?id=737869#c10 --- Comment #10 from Moritz Duge <colAflash@gmx.net> 2012-03-04 21:26:26 UTC --- OK, looks like laptop-mode-tools is the reason. Because I don't want to miss it I wrote this workaround. In /etc/init.d/laptop-mode I changed this stop) rm -f /var/run/laptop-mode-tools/enabled if RESULT=`/usr/sbin/laptop_mode stop` ; then log_success_msg "$RESULT" else log_failure_msg "$RESULT" fi ;; into this stop) rmmod battery rmmod ac sleep 1 rm -f /var/run/laptop-mode-tools/enabled if RESULT=`/usr/sbin/laptop_mode stop` ; then log_success_msg "$RESULT" else log_failure_msg "$RESULT" fi sleep 1 modprobe ac modprobe battery ;; It works and also explains why it didn't worked to put rmmod battery rmmod ac into /etc/init.d/halt.local When putting the rmmod commands into halt.local they become executed on shutdown after laptop-mode-tools have already been stopped. So laptop-mode-tools can't deactivate the laptop-mode anymore. By putting the rmmod command into /etc/init.d/laptop-mode before stopping laptop-mode-tools the laptop-mode becomes deactivated. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.