@@ -, +, @@ - Apply the patch - Create a new package with build-git-snapshot - Install the package - Create an SQL file from an existing installation with mysqldump - gzip the SQL file - point DEFAULTSQL to the file in /etc/koha/koha-sites.conf - create a new site with koha-create --create-db --- debian/scripts/koha-create | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/debian/scripts/koha-create +++ a/debian/scripts/koha-create @@ -189,7 +189,7 @@ then # Populate the database with default content. zcat "$DEFAULTSQL" | sed "s/__KOHASITE__/$name/g" | - mysql --host="$mysqlhost" --user="$mysqluser" --password="$mysqlpwd" + mysql --host="$mysqlhost" --user="$mysqluser" --password="$mysqlpwd" "$mysqldb" # Change the default user's password. --