Skip to content

Commit 5a5789c

Browse files
author
Maksim Fedotov
committed
(MODULES-7857) Support user creation on galera
1 parent e289392 commit 5a5789c

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

lib/puppet/provider/mysql_user/mysql.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ def create
6969
end
7070
@property_hash[:ensure] = :present
7171
@property_hash[:plugin] = plugin
72-
elsif newer_than('mysql' => '5.7.6', 'percona' => '5.7.6')
73-
self.class.mysql_caller("CREATE USER '#{merged_name}' IDENTIFIED WITH 'mysql_native_password' AS '#{password_hash}'", 'system')
72+
elsif newer_than('mysql' => '5.7.6', 'percona' => '5.7.6', 'mariadb' => '10.1.3')
73+
self.class.mysql_caller("CREATE USER IF NOT EXISTS '#{merged_name}' IDENTIFIED WITH 'mysql_native_password' AS '#{password_hash}'", 'system')
7474
@property_hash[:ensure] = :present
7575
@property_hash[:password_hash] = password_hash
7676
else

spec/unit/puppet/provider/mysql_user/mysql_spec.rb

+9
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,15 @@
174174
provider.expects(:exists?).returns(true)
175175
expect(provider.create).to be_truthy
176176
end
177+
it 'creates a user using IF NOT EXISTS' do
178+
provider.class.instance_variable_set(:@mysqld_version_string, '5.7.6')
179+
180+
provider.class.expects(:mysql_caller).with("CREATE USER IF NOT EXISTS 'joe'@'localhost' IDENTIFIED WITH 'mysql_native_password' AS '*6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4'", 'system') # rubocop:disable Metrics/LineLength
181+
provider.class.expects(:mysql_caller).with("GRANT USAGE ON *.* TO 'joe'@'localhost' WITH MAX_USER_CONNECTIONS 10 MAX_CONNECTIONS_PER_HOUR 10 MAX_QUERIES_PER_HOUR 10 MAX_UPDATES_PER_HOUR 10", 'system') # rubocop:disable Metrics/LineLength
182+
provider.class.expects(:mysql_caller).with("GRANT USAGE ON *.* TO 'joe'@'localhost' REQUIRE NONE", 'system')
183+
provider.expects(:exists?).returns(true)
184+
expect(provider.create).to be_truthy
185+
end
177186
end
178187

179188
describe 'destroy' do

0 commit comments

Comments
 (0)