some refactoring [execute tests on MySQL]

This commit is contained in:
rodicasutu
2020-10-30 16:18:47 +02:00
parent 0f58244d1a
commit 52197a79b2
6 changed files with 29 additions and 31 deletions

View File

@@ -1,7 +0,0 @@
# Create alfresco
CREATE USER 'alfresco' IDENTIFIED BY 'alfresco';
GRANT ALL on alfresco.* to 'alfresco'@'%' identified by 'alfresco' with grant option;
FLUSH HOSTS;
FLUSH PRIVILEGES;
# Create DB
CREATE DATABASE IF NOT EXISTS `alfresco` DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -xe
set -e
CONTAINER_NAME=alfresco-db-mysql
MYSQL_USER=alfresco

View File

@@ -1,7 +1,6 @@
#!/bin/bash
set -xe
DIRECTORY=`dirname $0`
echo $DIRECTORY
set -e
. $(dirname "${BASH_SOURCE[0]}")/common.sh
echo "============================================"