summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/LinHES-config/restore_km_db_chroot.sh
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2008-11-15 17:39:45 (GMT)
committerJames Meyer <james.meyer@operamail.com>2008-11-15 17:39:45 (GMT)
commit1c72f48f8dfa6a8beda6724852237174222a8a40 (patch)
tree3b985ff5afddb5b2c5d86e44c8c6c3484ab474d1 /abs/core-testing/LinHES-config/restore_km_db_chroot.sh
parentb5c4702b6b953bd4fd42b72984e96bf298c49d4d (diff)
downloadlinhes_pkgbuild-1c72f48f8dfa6a8beda6724852237174222a8a40.zip
linhes_pkgbuild-1c72f48f8dfa6a8beda6724852237174222a8a40.tar.gz
linhes_pkgbuild-1c72f48f8dfa6a8beda6724852237174222a8a40.tar.bz2
Check if the restore file for mythconverg is present.
If the file can not be found then install a new database and abort the restore process. Also display a message stating the above. closes FS#7
Diffstat (limited to 'abs/core-testing/LinHES-config/restore_km_db_chroot.sh')
-rw-r--r--abs/core-testing/LinHES-config/restore_km_db_chroot.sh15
1 files changed, 11 insertions, 4 deletions
diff --git a/abs/core-testing/LinHES-config/restore_km_db_chroot.sh b/abs/core-testing/LinHES-config/restore_km_db_chroot.sh
index 35e8fbd..17ad113 100644
--- a/abs/core-testing/LinHES-config/restore_km_db_chroot.sh
+++ b/abs/core-testing/LinHES-config/restore_km_db_chroot.sh
@@ -29,12 +29,19 @@ if [ $SystemType = "Master_backend" -o $SystemType = "Standalone" ]
#load database
pacman --noconfirm -R mythdb-initial
pacman --noconfirm -S mythdb-initial
- echo "restoring old database"
- gunzip -c /myth/backup/mythconverg.sql.gz > /myth/backup/mythconverg.sql
- mysql mythconverg < /myth/backup/mythconverg.sql
+
+ if [ -f /myth/backup/mythconverg.sql.gz ]
+ then
+ echo "restoring old database"
+ gunzip -c /myth/backup/mythconverg.sql.gz > /myth/backup/mythconverg.sql
+ mysql mythconverg < /myth/backup/mythconverg.sql
+
+ else
+ echo "Could not restore old database, mythconverg.sql is missing."
+ touch /tmp/.upgrade_db_failed
+ fi
if [ -d /data/srv/mysql/mythconverg ]
- #if [ -d /var/lib/mysql/mythconverg ]
then
status=0
fi