blob: df98315d79baf5ebb03f39e70890213281dcbdf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
#this enables airplay support
export MYTHTV_AIRPLAY="1"
if [ -f /etc/systemconfig ]; then
SystemType=$(grep SystemType= /etc/systemconfig | cut -d '"' -f 2)
fi
if [ ! $SystemType = "FrontendOnly" ]; then
if [ x$MYTH_RUN_STATUS = x ]; then
MYTHCONFDIR=/usr/share/mythtv /usr/bin/lh_myth_status.py
fi
MYTH_RUN_STATUS="1"
fi
|