Skip to content

Commit 9ede9a8

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 9a8c302 commit 9ede9a8

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

lib/puppet/provider/mysql_user/mysql.rb

+8-3
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,21 @@ def create
6161

6262
# Use CREATE USER to be compatible with NO_AUTO_CREATE_USER sql_mode
6363
# This is also required if you want to specify a authentication plugin
64+
if_not_exists = if newer_than('mysql' => '5.7', 'percona' => '5.7', 'mariadb' => '10.1.3')
65+
'IF NOT EXISTS '
66+
else
67+
''
68+
end
6469
if !plugin.nil?
6570
if plugin == 'sha256_password' && !password_hash.nil?
66-
self.class.mysql_caller("CREATE USER '#{merged_name}' IDENTIFIED WITH '#{plugin}' AS '#{password_hash}'", 'system')
71+
self.class.mysql_caller("CREATE USER #{if_not_exists}'#{merged_name}' IDENTIFIED WITH '#{plugin}' AS '#{password_hash}'", 'system')
6772
else
68-
self.class.mysql_caller("CREATE USER '#{merged_name}' IDENTIFIED WITH '#{plugin}'", 'system')
73+
self.class.mysql_caller("CREATE USER #{if_not_exists}'#{merged_name}' IDENTIFIED WITH '#{plugin}'", 'system')
6974
end
7075
@property_hash[:ensure] = :present
7176
@property_hash[:plugin] = plugin
7277
else
73-
self.class.mysql_caller("CREATE USER '#{merged_name}' IDENTIFIED BY PASSWORD '#{password_hash}'", 'system')
78+
self.class.mysql_caller("CREATE USER #{if_not_exists}'#{merged_name}' IDENTIFIED BY PASSWORD '#{password_hash}'", 'system')
7479
@property_hash[:ensure] = :present
7580
@property_hash[:password_hash] = password_hash
7681
end

0 commit comments

Comments
 (0)