wilagobler wrote:The problem is in the upstart script /etc/init/dvbhdhomerun-utils.conf
- Code: Select all
start on (filesystem and net-device-up and started udev)
The net-device-up event is emitted as soon as lo is up, before the real network has started. userhdhome then runs a discover when only the lo interface is running which of course fails.
To fix it change /etc/init/dvbhdhomerun-utils.conf to
- Code: Select all
start on (filesystem and net-device-up IFACE!=lo and started udev)
Which means at least one real interface is configured before running userhdhomerun.
Good point, I'll add that in the next release.
