Install warehouse-apps into arvados/warehouse directly from github source.
[arvados.git] / docker / warehouse / config_mysqld.sh.in
diff --git a/docker/warehouse/config_mysqld.sh.in b/docker/warehouse/config_mysqld.sh.in
deleted file mode 100644 (file)
index 020c6f5..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#! /bin/sh
-
-/etc/init.d/mysql start
-mysql <<EOF
-create database warehouse;
-grant all privileges on warehouse.* to warehouse@'%';
-set password for warehouse@'%' = password('@@WAREHOUSE_MYSQL_PW@@');
-EOF
-/etc/init.d/mysql stop