summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Igo <bob@stormlogic.com>2009-02-18 21:37:21 (GMT)
committerBob Igo <bob@stormlogic.com>2009-02-18 21:37:21 (GMT)
commit7c824a57dda47469dd665ca874e2aeed8fe22eb2 (patch)
treeec00bc92170db10441c24ae1a6c8526e54f58863
parent9c978398e4ac95646ad993004bf3fdc2284b98a8 (diff)
downloadlinhes_pkgbuild-7c824a57dda47469dd665ca874e2aeed8fe22eb2.zip
linhes_pkgbuild-7c824a57dda47469dd665ca874e2aeed8fe22eb2.tar.gz
linhes_pkgbuild-7c824a57dda47469dd665ca874e2aeed8fe22eb2.tar.bz2
Getting Tweaker to run ASAP after first boot, not before.
-rw-r--r--abs/core-testing/LinHES-system/LinHES-run4
-rw-r--r--abs/core-testing/LinHES-system/PKGBUILD2
-rwxr-xr-xabs/core-testing/mythtv/stable/mythdb-initial/PKGBUILD2
-rwxr-xr-xabs/core-testing/mythtv/stable/mythdb-initial/mythdb.install39
4 files changed, 18 insertions, 29 deletions
diff --git a/abs/core-testing/LinHES-system/LinHES-run b/abs/core-testing/LinHES-system/LinHES-run
index fe79722..48d9d8a 100644
--- a/abs/core-testing/LinHES-system/LinHES-run
+++ b/abs/core-testing/LinHES-system/LinHES-run
@@ -24,7 +24,9 @@ if [ ! $SystemType = "Frontend_only" ]
then
if [ -f ~/.configure ]
then
- autocard.py -g &
+ sudo -E tweaker.pl
+ /bin/rm /tmp/fps # ??? clean up a temp file that will eventually be obsolete anyway
+ #autocard.py -g &
MythVantage -b
#0 yes
diff --git a/abs/core-testing/LinHES-system/PKGBUILD b/abs/core-testing/LinHES-system/PKGBUILD
index 39f0cde..874b085 100644
--- a/abs/core-testing/LinHES-system/PKGBUILD
+++ b/abs/core-testing/LinHES-system/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=LinHES-system
pkgver=1.0
-pkgrel=28
+pkgrel=29
arch=('i686')
MVDIR=$startdir/pkg/usr/LH
BINDIR=$startdir/pkg/usr/bin
diff --git a/abs/core-testing/mythtv/stable/mythdb-initial/PKGBUILD b/abs/core-testing/mythtv/stable/mythdb-initial/PKGBUILD
index 6f59ea5..e7090bd 100755
--- a/abs/core-testing/mythtv/stable/mythdb-initial/PKGBUILD
+++ b/abs/core-testing/mythtv/stable/mythdb-initial/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=mythdb-initial
pkgver=1
-pkgrel=22
+pkgrel=24
pkgdesc="setup the initial mythtv database for linhes"
url=""
license=""
diff --git a/abs/core-testing/mythtv/stable/mythdb-initial/mythdb.install b/abs/core-testing/mythtv/stable/mythdb-initial/mythdb.install
index e15231e..7833aa4 100755
--- a/abs/core-testing/mythtv/stable/mythdb-initial/mythdb.install
+++ b/abs/core-testing/mythtv/stable/mythdb-initial/mythdb.install
@@ -1,36 +1,23 @@
mydate=`date +%m-%d-%y`
HOST=`hostname`
post_install() {
-#echo backup the old database
- mysqldump mythconverg >/data/database/mythconverg.${mydate}.sql
-# echo dropping the old database
- mysql -u root -e 'drop database mythconverg;'
- mysql -u root -e 'create database mythconverg;'
- echo installing the default database
- if [ $HOST = 'larch5' ]
- then
- cp /data/database/mc.sql.initial /data/database/mc.sql.fixed
- cp /data/database/permissions.sql /data/database/permissions.sql.fixed
- else
- sed -e "s/larch5/$HOST/g" /data/database/mc.sql.initial > /data/database/mc.sql.fixed
- sed -e "s/larch5/$HOST/g" /data/database/permissions.sql > /data/database/permissions.sql.fixed
+ echo archiving the old database
+ mysqldump mythconverg > /data/database/mythconverg.${mydate}.sql
- fi
-
- mysql mythconverg < /data/database/mc.sql.fixed 2>/dev/null
- mysql < /data/database/permissions.sql.fixed 2>/dev/null
-
- rm /data/database/mc.sql.initial
-
- # Run Tweaker to apply settings on top of baseline SQL.
- tweaker.pl
- /bin/rm /tmp/fps # ??? clean up a temp file that will eventually be obsolete anyway
+ echo installing the baseline database
+ sed -e "s/MythTVhost/$HOST/g" /data/database/mc.sql.initial > /data/database/mc.sql.fixed
+ sed -e "s/MythTVhost/$HOST/g" /data/database/permissions.sql > /data/database/permissions.sql.fixed
+ mysql < /data/database/mc.sql.fixed 2>/dev/null
+ mysql < /data/database/permissions.sql.fixed 2>/dev/null
+ # Keep the baseline SQL file around because it's useful to learn what changes users made
+ # to their Tweaker-customized defaults.
+ #rm /data/database/mc.sql.initial
}
post_upgrade() {
- echo "nothing to do"
+ echo "nothing to do"
}
-op=$1
-shift
+op=$1
+shift
$op $*