Merge pull request #4124 from karies/PhpBBPort

Make MySQL port number configurable.
This commit is contained in:
Régis Hanol 2016-03-30 10:42:07 +02:00
commit a00ba1d3e9
3 changed files with 4 additions and 0 deletions

View File

@ -34,6 +34,7 @@ module ImportScripts::PhpBB3
def create_database_client
Mysql2::Client.new(
host: @database_settings.host,
port: @database_settings.port,
username: @database_settings.username,
password: @database_settings.password,
database: @database_settings.schema

View File

@ -3,6 +3,7 @@
database:
type: MySQL # currently only MySQL is supported - more to come soon
host: localhost
port: 3306
username: root
password:
schema: phpbb

View File

@ -61,6 +61,7 @@ module ImportScripts::PhpBB3
class DatabaseSettings
attr_reader :type
attr_reader :host
attr_reader :port
attr_reader :username
attr_reader :password
attr_reader :schema
@ -70,6 +71,7 @@ module ImportScripts::PhpBB3
def initialize(yaml)
@type = yaml['type']
@host = yaml['host']
@port = yaml['port']
@username = yaml['username']
@password = yaml['password']
@schema = yaml['schema']