I screwed up the script, should be restart) in the second script. ** Description changed:
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 - ;; + 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 + 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? ** Tags added: 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