|
|
|
@ -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 |
|
|
|
|