[Mapbender-commits] r9975 - trunk/mapbender/resources/db
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Thu Oct 11 08:35:01 PDT 2018
Author: armin11
Date: 2018-10-11 08:35:01 -0700 (Thu, 11 Oct 2018)
New Revision: 9975
Modified:
trunk/mapbender/resources/db/install_geoportal_mb28.sh
Log:
Fix
Modified: trunk/mapbender/resources/db/install_geoportal_mb28.sh
===================================================================
--- trunk/mapbender/resources/db/install_geoportal_mb28.sh 2018-10-11 13:57:52 UTC (rev 9974)
+++ trunk/mapbender/resources/db/install_geoportal_mb28.sh 2018-10-11 15:35:01 UTC (rev 9975)
@@ -39,8 +39,10 @@
#
############################################################
use_proxy="false"
+
http_proxy_host="proxyip"
http_proxy_port="proxyport"
+
https_proxy_host="proxyip"
https_proxy_port="proxyport"
############################################################
@@ -530,7 +532,7 @@
CREATE DATABASE typo3;
DROP USER '${typo3_database_user}'@'localhost';
CREATE USER '${typo3_database_user}'@'localhost' IDENTIFIED BY '${typo3_database_password}';
-GRANT ALL PRIVILEGES ON typo3.* TO '{typo3_database_user}'@'localhost';
+GRANT ALL PRIVILEGES ON typo3.* TO '${typo3_database_user}'@'localhost';
--GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,FILE,INDEX,ALTER,CREATE TEMPORARY TABLES,CREATE VIEW,EVENT,TRIGGER,SHOW VIEW,CREATE ROUTINE,ALTER ROUTINE,EXECUTE ON * . * TO '${typo3_database_user}'@'%' IDENTIFIED BY '${typo3_database_password}' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;
--GRANT ALL PRIVILEGES ON `typo3` . * TO '${typo3_database_user}'@'%';
FLUSH PRIVILEGES;
More information about the Mapbender_commits
mailing list