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:
1159
1159
1160
1160
The name of the database to create. Database names must:
1161
1161
* not be longer than 64 characters.
1162
- * not contain / \ or . characters.
1162
+ * not contain '/' ' \' or '.' characters.
1163
1163
* not contain characters that are not permitted in file names.
1164
1164
* not end with space characters.
1165
1165
Original file line number Diff line number Diff line change 12
12
# @param name
13
13
# The name of the database to create. Database names must:
14
14
# * not be longer than 64 characters.
15
- # * not contain / \ or . characters.
15
+ # * not contain '/' '\' or '.' characters.
16
16
# * not contain characters that are not permitted in file names.
17
17
# * not end with space characters.
18
18
# @param user
69
69
if $dbname !~ /^[^\/?%*:|\" " <>.\s;]{1,64}$/ {
70
70
$message = " The database name '${dbname} ' is invalid. Values must:
71
71
* not be longer than 64 characters.
72
- * not contain // \\ or . characters.
72
+ * not contain '/' ' \\ ' or '.' characters.
73
73
* not contain characters that are not permitted in file names.
74
74
* not end with space characters."
75
75
fail($message )
You can’t perform that action at this time.
0 commit comments