Public bug reported: Binary package hint: tpb
The init script for tpb located at /etc/init.d/tpb doesn't actually launch tpb. After looking at the init script: #!/bin/sh # test -f /lib/lsb/init-functions || exit 1 . /lib/lsb/init-functions case "$1" in start) /sbin/lsmod | /bin/grep nvram > /dev/null if [ $? != 0 ] then log_begin_msg "Loading nvram module" modprobe nvram log_end_msg 0 fi ;; stop) ;; restart|force-reload) ;; *) echo "Usage: tpb {start|stop|restart|force-reload}" >&2 exit 1 ;; esac exit 0 tpb isn't actually launched at all. I believe that tpb -d should be inserted at the end of the if statement near the beginning to be launched after the nvram module is loaded. I've rewritten the init script to something a bit more lightweight: #!/bin/sh Case "$1" in start) modprobe nvram tpb -d ;; stop) killall tpb ;; restart) "$0" stop "$0" start ;; esac For some obscure reason, I still have to launch the script manually, it fails to run at startup (did update-rcd tpb defaults, and added my user to the nvram and thinkpad group) Any chance we can get this fixed? ** Affects: tpb (Ubuntu) Importance: Undecided Status: New ** Tags: thinkpad -- tpb init script doesn't launch tpb https://bugs.launchpad.net/bugs/146987 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs