From 1d77607bf07d77172a088719fe9b741a476987de Mon Sep 17 00:00:00 2001 From: Andrew Woodward Date: Mon, 17 Oct 2016 14:14:44 -0700 Subject: [PATCH] Change conf from create to ensure In order to help minimize issues with create/duplicates we need to switch from create_resources to ensure_resources Change-Id: I3238d30ad90b67107e6a13e3655e590ee802c6ff --- manifests/conf.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/conf.pp b/manifests/conf.pp index 2e51942f..684b5e0d 100644 --- a/manifests/conf.pp +++ b/manifests/conf.pp @@ -28,5 +28,5 @@ # Optional. Defaults to a empty hash # class ceph::conf($args = {}, $defaults = {}) { - create_resources(ceph_config, $args, $defaults) + ensure_resources(ceph_config, $args, $defaults) }