summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/mythdb-initial/mythdb.install
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/mythdb-initial/mythdb.install
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/mythdb-initial/mythdb.install')
-rwxr-xr-xabs/core-testing/mythdb-initial/mythdb.install35
1 files changed, 0 insertions, 35 deletions
diff --git a/abs/core-testing/mythdb-initial/mythdb.install b/abs/core-testing/mythdb-initial/mythdb.install
deleted file mode 100755
index f5e45f6..0000000
--- a/abs/core-testing/mythdb-initial/mythdb.install
+++ /dev/null
@@ -1,35 +0,0 @@
-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
- cp /data/database/custom.sql /data/database/custom.sql.fixed
- else
- sed -e "s/fireball/$HOST/g" /data/database/mc.sql.initial > /data/database/mc.sql.fixed
- sed -e "s/fireball/$HOST/g" /data/database/permissions.sql > /data/database/permissions.sql.fixed
- sed -e "s/fireball/$HOST/g" /data/database/custom.sql > /data/database/custom.sql.fixed
-
- fi
-
- mysql mythconverg < /data/database/mc.sql.fixed 2>/dev/null
- mysql < /data/database/permissions.sql.fixed 2>/dev/null
- mysql mythconverg < /data/database/custom.sql.fixed 2>/dev/null
-
- rm /data/database/mc.sql.initial
- rm /data/database/custom.sql.fixed
-}
-post_upgrade() {
- echo "nothing to do"
-}
-
-op=$1
-shift
-$op $*