Merge "Validate input of ceph::conf"

This commit is contained in:
Zuul 2023-07-27 10:39:55 +00:00 committed by Gerrit Code Review
commit 515b3de05d

View File

@ -22,11 +22,14 @@
# === Parameters:
#
# [*args*] A Ceph config hash.
# Optional.
# Optional. Defaults to an empty hash
#
# [*defaults*] A config hash
# Optional. Defaults to a empty hash
# Optional. Defaults to an empty hash
#
class ceph::conf($args = {}, $defaults = {}) {
class ceph::conf(
Hash $args = {},
Hash $defaults = {}
) {
ensure_resources(ceph_config, $args, $defaults)
}