I installed a fresh copy of LinHES 7.3 last night and find that the mythtv_mythfrontend.0.log is getting clogged with these messages every second:
2012-08-04T07:36:19.321582-04:00 mythtv mythfrontend: >>> ATTENTION! ATTENTION! ATTENTION!
2012-08-04T07:36:19.321592-04:00 mythtv mythfrontend: >>> Unable to connect the the MySQL database to make needed
2012-08-04T07:36:19.321598-04:00 mythtv mythfrontend: >>> changes to the LIRC socket.
2012-08-04T07:36:19.321602-04:00 mythtv mythfrontend: >>> LIRC now uses /var/run/lirc/lircd and /dev/lirc is now
2012-08-04T07:36:19.321605-04:00 mythtv mythfrontend: >>> obsolete. Update your MythTV settings to reflect this.
2012-08-04T07:36:19.321608-04:00 mythtv mythfrontend: >>>
This message appears to come from this script:
http://cgit.linhes.org/linhes_pkgbuild/ ... rc.installCode:
# Fix LircSocket in mythtv database
SOCKET=`mysql -u mythtv -pmythtv -B --skip-column-names -h "${dbhost}" -D mythconverg -e \
"SELECT data FROM settings WHERE value = 'LircSocket' AND hostname = '${hostname}';"`
if [ "${SOCKET}" != "/var/run/lirc/lircd" ]; then
mysql -u mythtv -pmythtv -B --skip-column-names -h "${dbhost}" -D mythconverg -e \
"UPDATE settings SET data = '/var/run/lirc/lircd' WHERE value = 'LircSocket' AND hostname = '${hostname}';"
else
echo ">>>"
echo ">>> ATTENTION! ATTENTION! ATTENTION!"
echo ">>> Unable to connect the the MySQL database to make needed"
echo ">>> changes to the LIRC socket."
echo ">>> LIRC now uses /var/run/lirc/lircd and /dev/lirc is now"
echo ">>> obsolete. Update your MythTV settings to reflect this."
echo ">>>"
fi
My database value is correctly set to /var/run/lirc/lircd. Why does this script run every second? What setting am I supposed to update?