From 3b429eca34a0d44f617da10a250762330e6169ef Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Tue, 18 Jun 2019 01:10:28 +0200 Subject: [PATCH] assert_private() params and deps classes These classes are private and should never be used outside of it's module. Change-Id: Ibe65fa54f112e5e697a25cd68c6a4f3d89ef104d --- manifests/deps.pp | 3 +++ manifests/params.pp | 3 +++ 2 files changed, 6 insertions(+) diff --git a/manifests/deps.pp b/manifests/deps.pp index 8622f470..c795e1f8 100644 --- a/manifests/deps.pp +++ b/manifests/deps.pp @@ -3,6 +3,9 @@ # Ceilometer anchors and dependency management # class ceilometer::deps { + + assert_private() + # Setup anchors for install, config and service phases of the module. These # anchors allow external modules to hook the begin and end of any of these # phases. Package or service management can also be replaced by ensuring the diff --git a/manifests/params.pp b/manifests/params.pp index c3082707..0386c6df 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -4,6 +4,9 @@ # should be considered to be constant # class ceilometer::params { + + assert_private() + include openstacklib::defaults $dbsync_command = 'ceilometer-upgrade'