Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(IAC-1430) - Minor docs updating #1401

Merged
merged 1 commit into from
Jun 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions lib/puppet/functions/mysql/normalise_and_deepmerge.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

# @summary Recursively merges two or more hashes together, normalises keys with differing use of dashesh and underscores,
# then returns the resulting hash.
# @summary Recursively merges two or more hashes together, normalises keys with differing use of dashes and underscores.
#
# @example
# $hash1 = {'one' => 1, 'two' => 2, 'three' => { 'four' => 4 } }
Expand All @@ -15,6 +14,12 @@
# - When there are conficting uses of dashes and underscores in two keys (which mysql would otherwise equate), the rightmost style will win.
#
Puppet::Functions.create_function(:'mysql::normalise_and_deepmerge') do
# @param args
# Hash to be normalised
#
# @return hash
# The given hash normalised
#
def normalise_and_deepmerge(*args)
if args.length < 2
raise Puppet::ParseError, _('mysql::normalise_and_deepmerge(): wrong number of arguments (%{args_length}; must be at least 2)') % { args_length: args.length }
Expand Down
4 changes: 0 additions & 4 deletions manifests/client.pp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
# Whether the MySQL package should be present, absent, or a specific version. Valid values are 'present', 'absent', or 'x.y.z'.
# @param package_manage
# Whether to manage the MySQL client package. Defaults to `true`.
# @param service_name
# The name of the MySQL server service. Defaults are OS dependent, defined in 'params.pp'.
# @param service_provider
# The provider to use to manage the service. For Ubuntu, defaults to 'upstart'; otherwise, default is undefined.
# @param package_name
# The name of the MySQL client package to install.
#
Expand Down
2 changes: 2 additions & 0 deletions types/options.pp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# @summary A hash of options structured like the override_options, but not merged with the default options.
# Use this if you don’t want your options merged with the default options.
type Mysql::Options = Hash[
String,
Hash,
Expand Down