Fix path for the feed table creation, and also create syncable table

This commit is contained in:
Daniel Berteaud 2014-02-19 12:43:15 +01:00
parent 7205d5ce1d
commit 3c33436caf
1 changed files with 3 additions and 1 deletions

View File

@ -3,13 +3,15 @@ my $db = ${'pydio'}{'DbName'} || 'pydio';
my $user = ${'pydio'}{'DbUser'} || 'pydio';
my $pass = ${'pydio'}{'DbPassword'} || 'secret';
my $feed = "/usr/share/pydio/plugins/feed.sql/create.sql";
my $feed = "/usr/share/pydio/plugins/feed.sql/create.mysql";
my $syncable = "/usr/share/pydio/plugins/meta.syncable/create.mysql";
$OUT .= <<"END";
#! /bin/sh
if [ ! -d /var/lib/mysql/$db ]; then
/usr/bin/mysql -e 'create database $db'
/usr/bin/mysql $db < $feed
/usr/bin/mysql $db < $syncable
if [ -e /var/lib/mysql/ajaxplorer ]; then
/usr/bin/mysqldump --add-drop-table ajaxplorer | /usr/bin/mysql $db
/usr/bin/mysqladmin -f drop ajaxplorer