Convert all class usage to relative names

Change-Id: I842f2fffc2360ab199596db3fbd2b63441d6d6b4
This commit is contained in:
Tobias Urdin
2019-12-08 23:18:01 +01:00
parent 0e212e8257
commit 00e3785f1f
5 changed files with 5 additions and 5 deletions

View File

@@ -9,4 +9,4 @@
# Learn more about module testing here: # Learn more about module testing here:
# https://puppet.com/docs/puppet/latest/bgtm.html#testing-your-module # https://puppet.com/docs/puppet/latest/bgtm.html#testing-your-module
# #
include ::oslo include oslo

View File

@@ -134,7 +134,7 @@ define oslo::cache(
$manage_backend_package = true, $manage_backend_package = true,
){ ){
include ::oslo::params include oslo::params
if !is_service_default($backend_argument) { if !is_service_default($backend_argument) {
$backend_argument_orig = join(any2array($backend_argument), ',') $backend_argument_orig = join(any2array($backend_argument), ',')

View File

@@ -140,7 +140,7 @@ define oslo::db(
$idle_timeout = $::os_service_default, $idle_timeout = $::os_service_default,
) { ) {
include ::oslo::params include oslo::params
if !is_service_default($connection) { if !is_service_default($connection) {

View File

@@ -9,6 +9,6 @@
# #
class oslo { class oslo {
include ::oslo::params include oslo::params
} }

View File

@@ -3,7 +3,7 @@
# Parameters for puppet-oslo # Parameters for puppet-oslo
# #
class oslo::params { class oslo::params {
include ::openstacklib::defaults include openstacklib::defaults
$pyvers = $::openstacklib::defaults::pyvers $pyvers = $::openstacklib::defaults::pyvers
$pymongo_package_name = "python${pyvers}-pymongo" $pymongo_package_name = "python${pyvers}-pymongo"