From b2c89a758cdc2a159bf1fb2aaf12e0ab4b8dad36 Mon Sep 17 00:00:00 2001 From: Joe Ferguson Date: Sun, 1 Nov 2020 07:59:42 -0600 Subject: [PATCH 1/2] Handle MariaDB as well as MySQL DBs, resolves #1532 --- scripts/homestead.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/homestead.rb b/scripts/homestead.rb index f2c7b1bab..1dfcf9bb5 100644 --- a/scripts/homestead.rb +++ b/scripts/homestead.rb @@ -534,9 +534,9 @@ def self.configure(config, settings) end settings['databases'].each do |db| - if enabled_databases.include? 'mysql' + if (enabled_databases.include? 'mysql') || (enabled_databases.include? 'mariadb') config.vm.provision 'shell' do |s| - s.name = 'Creating MySQL Database: ' + db + s.name = 'Creating MySQL / MariaDB Database: ' + db s.path = script_dir + '/create-mysql.sh' s.args = [db] end From 40f4dbe4619a592336cec017d461fbdfa033a09c Mon Sep 17 00:00:00 2001 From: Joe Ferguson Date: Sun, 1 Nov 2020 08:03:04 -0600 Subject: [PATCH 2/2] Tagging 10.15.2 --- bin/homestead | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/homestead b/bin/homestead index 88f32fc31..130d948b7 100755 --- a/bin/homestead +++ b/bin/homestead @@ -3,7 +3,7 @@ require __DIR__.'/../../../autoload.php'; -$app = new Symfony\Component\Console\Application('Laravel Homestead', '10.15.1'); +$app = new Symfony\Component\Console\Application('Laravel Homestead', '10.15.2'); $app->add(new Laravel\Homestead\MakeCommand);