File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1159,7 +1159,7 @@ The following parameters are available in the `mysql::db` defined type:
11591159
11601160The name of the database to create. Database names must:
11611161 * not be longer than 64 characters.
1162- * not contain / \ or . characters.
1162+ * not contain '/' ' \' or '.' characters.
11631163 * not contain characters that are not permitted in file names.
11641164 * not end with space characters.
11651165
Original file line number Diff line number Diff line change 1212# @param name
1313# The name of the database to create. Database names must:
1414# * not be longer than 64 characters.
15- # * not contain / \ or . characters.
15+ # * not contain '/' '\' or '.' characters.
1616# * not contain characters that are not permitted in file names.
1717# * not end with space characters.
1818# @param user
6969 if $dbname !~ /^[^\/?%*:|\" " <>.\s;]{1,64}$/ {
7070 $message = " The database name '${dbname} ' is invalid. Values must:
7171 * not be longer than 64 characters.
72- * not contain // \\ or . characters.
72+ * not contain '/' ' \\ ' or '.' characters.
7373 * not contain characters that are not permitted in file names.
7474 * not end with space characters."
7575 fail($message )
You can’t perform that action at this time.
0 commit comments