Fix typoed parameter.

This commit is contained in:
Ashley Penney 2013-09-30 12:10:42 -04:00
parent 9b7adbfa93
commit dec3e1f7f1
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ class mysql(
'tmpdir' => $tmpdir,
},
'mysqldump' => {
'max_allowed_packets' => $max_allowed_packet,
'max_allowed_packet' => $max_allowed_packet,
},
'config_file' => $config_file,
'etc_root_password' => $etc_root_password,

View file

@ -213,7 +213,7 @@ class mysql::params {
'user' => 'mysql',
},
'mysqldump' => {
'max_allowed_packets' => '16M',
'max_allowed_packet' => '16M',
'quick' => true,
'quote-names' => true,
},