I have created a /etc/rc2.d/S25mythtv-backend

#! /bin/sh

PATH=/sbin:/bin:/usr/sbin:/usr/bin
[ -f /etc/default/rcS ] && . /etc/default/rcS
. /lib/lsb/init-functions

do_start() {
        if [ -x /usr/bin/mythbackend ]; then
                log_begin_msg "Running Mythbackend (/usr/bin/mythbackend)"
                /usr/bin/mythbackend
                log_end_msg $?
        fi
}

case "$1" in
    start)
        do_start
        ;;
    restart|reload|force-reload)
        echo "Error: argument '$1' not supported" >&2
        exit 3
        ;;
    stop)
        ;;
    *)
        echo "Usage: $0 start|stop" >&2
        exit 3
        ;;
esac


Now it works. The issue is in /etc/rc2.d/S24mythtv-backend

-- 
[feisty] Mythbackend broken at boot
https://bugs.launchpad.net/bugs/140634
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

Reply via email to