diff --git a/manifests/conf.pp b/manifests/conf.pp index 684b5e0d..74d75b8e 100644 --- a/manifests/conf.pp +++ b/manifests/conf.pp @@ -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) }