diff --git a/manifests/init.pp b/manifests/init.pp index 48ae694..eba5c20 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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, diff --git a/manifests/params.pp b/manifests/params.pp index ea4eab1..ed8199b 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -213,7 +213,7 @@ class mysql::params { 'user' => 'mysql', }, 'mysqldump' => { - 'max_allowed_packets' => '16M', + 'max_allowed_packet' => '16M', 'quick' => true, 'quote-names' => true, },