Skip to content

Commit 784fc81

Browse files
author
Maksim Fedotov
committed
(MODULES-7857) Support user creation on galera. Add IF NOT EXISTS to CREATE USER in mysql_user provider
1 parent e289392 commit 784fc81

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

lib/puppet/provider/mysql_user/mysql.rb

+4-4
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
@@ -79,7 +79,7 @@ def create
7979
@property_hash[:password_hash] = password_hash
8080
end
8181
# rubocop:disable Metrics/LineLength
82-
if newer_than('mysql' => '5.7.6', 'percona' => '5.7.6')
82+
if newer_than('mysql' => '5.7.6', 'percona' => '5.7.6', 'mariadb' => '10.2.0')
8383
self.class.mysql_caller("ALTER USER IF EXISTS '#{merged_name}' WITH MAX_USER_CONNECTIONS #{max_user_connections} MAX_CONNECTIONS_PER_HOUR #{max_connections_per_hour} MAX_QUERIES_PER_HOUR #{max_queries_per_hour} MAX_UPDATES_PER_HOUR #{max_updates_per_hour}", 'system')
8484
else
8585
self.class.mysql_caller("GRANT USAGE ON *.* TO '#{merged_name}' WITH MAX_USER_CONNECTIONS #{max_user_connections} MAX_CONNECTIONS_PER_HOUR #{max_connections_per_hour} MAX_QUERIES_PER_HOUR #{max_queries_per_hour} MAX_UPDATES_PER_HOUR #{max_updates_per_hour}", 'system')
@@ -92,7 +92,7 @@ def create
9292

9393
merged_tls_options = tls_options.join(' AND ')
9494
if newer_than('mysql' => '5.7.6', 'percona' => '5.7.6', 'mariadb' => '10.2.0')
95-
self.class.mysql_caller("ALTER USER '#{merged_name}' REQUIRE #{merged_tls_options}", 'system')
95+
self.class.mysql_caller("ALTER USER IF EXISTS '#{merged_name}' REQUIRE #{merged_tls_options}", 'system')
9696
else
9797
self.class.mysql_caller("GRANT USAGE ON *.* TO '#{merged_name}' REQUIRE #{merged_tls_options}", 'system')
9898
end

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 BY PASSWORD '*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)