File tree 1 file changed +8
-3
lines changed
lib/puppet/provider/mysql_user
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -61,16 +61,21 @@ def create
61
61
62
62
# Use CREATE USER to be compatible with NO_AUTO_CREATE_USER sql_mode
63
63
# 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
64
69
if !plugin . nil?
65
70
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' )
67
72
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' )
69
74
end
70
75
@property_hash [ :ensure ] = :present
71
76
@property_hash [ :plugin ] = plugin
72
77
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' )
74
79
@property_hash [ :ensure ] = :present
75
80
@property_hash [ :password_hash ] = password_hash
76
81
end
You can’t perform that action at this time.
0 commit comments