Difference between revisions of "Upstart mythbackend Configuration"

From MythTV Official Wiki
Jump to: navigation, search
(Allow/inhibit core files after 4a515ba.)
(Set locale from defaults rather than 'hard code' it.)
Line 28: Line 28:
 
script
 
script
 
         ulimit -c unlimited    # Note 1.
 
         ulimit -c unlimited    # Note 1.
         export LANG=en_US.UTF-8 # Note 2.
+
         . /etc/default/locale  # Note 2.
 +
        export LANG
 
         export LC_ALL=$LANG
 
         export LC_ALL=$LANG
 
         USER=mythtv
 
         USER=mythtv

Revision as of 20:42, 9 October 2011

Some newer Linux distributions replace the traditional initscript startup management process with a program called upstart, which does things differently; here are some notes on how to make MythTV play nicely with upstart.

Default configuration

Author Mario Limonciello
Description Upstart configuration file for starting mythbackend.
Supports


Save the configuration file below in /etc/init/mythtv-backend.conf and create a symlink referencing the upstart-job binary in /etc/init.d or /etc/rc.d/init.d.

ln -s /lib/init/upstart-job /etc/init.d/mythtv-backend


Script.png /etc/init/mythtv-backend.conf

# MythTV Backend service

description     "MythTV Backend"
author          "Mario Limonciello <superm1@ubuntu.com>"

start on (local-filesystems and net-device-up IFACE=lo)
stop on starting shutdown

#expect fork
respawn

script
        ulimit -c unlimited     # Note 1.
        . /etc/default/locale   # Note 2.
        export LANG
        export LC_ALL=$LANG
        USER=mythtv
        ARGS="--logfile /var/log/mythtv/mythbackend.log --user $USER"
        test -f /etc/default/mythtv-backend && . /etc/default/mythtv-backend || true
        /usr/bin/mythbackend $ARGS $EXTRA_ARGS
end script


Important.png Note: 1, after 0.25pre [4a515ba] use ulimit -c unlimited to allow mythbackend core files or ulimit -c 0 to inhibit them.


Important.png Note: 2, a test was added in 0.25pre [b82c53a5] to verify that the LANG and (LC_ALL or LC_CTYPE) variables are set. Your value and related language settings can be seen by using locale on the command line.

Delay starting the backend until all tuners have initialised

Some tuners take a long time to initialise and may therefore not yet be available when the backend starts. Since the backend only tests the presence of tuners upon startup, tuner initialisation needs to have completed before the backend is started.

This is accomplished by adding additional events to the and clauses in the start on stanza. An example follows:


Script.png start on stanza in /etc/init/mythtv-backend.conf

start on (local-filesystems and net-device-up IFACE=lo and pvrusb2-device-added KERNEL=sn-7157879 and pvrusb2-device-added KERNEL=sn-7117063)

Consult the Upstart Intro, Cookbook and Best Practices for details about how to determine the correct events. Briefly:

  • Use the following command to list all possible event types on your system:
for subsystem in /sys/class/*
do
  for action in added changed removed
  do
    echo "${subsystem}-device-${action}"
  done
done
  • Determine which of these event types correspond with your tuners. For example, when a Hauppauge HVR-1900 tuner finishes initialisation this results in a pvrusb2-device-added event.
  • If you have only one tuner, or only one tuner of each type, then you are done: just add the corresponding events to your start on stanza without additional parameters.
  • If you however have multiple tuners that result in the same event type upon initialisation, then you want to delay starting the backend until they have all initialised. You therefore need to find a way to tell the tuner initialisation events apart. In the above example this is done by noting that the KERNEL environment variable contains the tuner's serial number when the event is triggered.
  • In order to find out which environment variables are available when an event is triggered, create a test Upstart configuration file such as the following, which logs the environment to a file:

Script.png /etc/init/test.conf

start on (pvrusb2-device-added)
script
  echo "\n`env`" >> /dev/.initramfs/test.log
end script

Don't forget to delete the test Upstart config file when you are done.