summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/LinHES-config/systemconfig.sh
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2008-11-08 03:42:58 (GMT)
committerJames Meyer <james.meyer@operamail.com>2008-11-08 03:42:58 (GMT)
commit3d91b06198a56b6579cb0bd77de65f5908571b87 (patch)
tree79b04c7d23b5fc46353fe75de55f9ae4203fb1fd /abs/core-testing/LinHES-config/systemconfig.sh
parentd2549a3ee0e9a28f66ff832d3efa93c7a4d7e5af (diff)
downloadlinhes_pkgbuild-3d91b06198a56b6579cb0bd77de65f5908571b87.zip
linhes_pkgbuild-3d91b06198a56b6579cb0bd77de65f5908571b87.tar.gz
linhes_pkgbuild-3d91b06198a56b6579cb0bd77de65f5908571b87.tar.bz2
change the location of mysql.txt to match the installation dir of mythtv.
This fixes FE only install types
Diffstat (limited to 'abs/core-testing/LinHES-config/systemconfig.sh')
-rwxr-xr-xabs/core-testing/LinHES-config/systemconfig.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/abs/core-testing/LinHES-config/systemconfig.sh b/abs/core-testing/LinHES-config/systemconfig.sh
index ba6325b..a12546a 100755
--- a/abs/core-testing/LinHES-config/systemconfig.sh
+++ b/abs/core-testing/LinHES-config/systemconfig.sh
@@ -85,18 +85,18 @@ function setupmysql {
fi
fi
- MYSQLTXT=${BASE}/usr/local/share/mythtv/mysql.txt
+ MYSQLTXT=${BASE}/usr/share/mythtv/mysql.txt
if [ $SystemType = "Standalone" ]
then
sed -e "s/^DBHostName=.*$/DBHostName="localhost"/" $TEMPLATES/mysql.txt > $MYSQLTXT
else
sed -e "s/^DBHostName=.*$/DBHostName=$dbhost/" $TEMPLATES/mysql.txt > $MYSQLTXT
fi
- rm ${BASE}/data/home/mythtv/.mythtv/mysql.txt
+ rm ${BASE}/home/mythtv/.mythtv/mysql.txt
rm ${BASE}${MV_ROOT}/bin/mythtv/.mythtv/mysql.txt
- if [ -f ${BASE}/data/home/mythtv/templates/mysql.txt ]
+ if [ -f ${BASE}/home/mythtv/templates/mysql.txt ]
then
- cp ${BASE}/data/home/mythtv/templates/mysql.txt $MYSQLTXT
+ cp ${BASE}/home/mythtv/templates/mysql.txt $MYSQLTXT
fi
chmod 755 $MYSQLTXT