From 5982115b9806f62c3f89666578849e6d49d275c7 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 12 May 2021 10:53:24 +0900 Subject: [PATCH] Fix lint error with the latest lint packages This change fixes the following lint error which is detected since we removed pin of lint packages. manifests/openstackclient.pp:18:WARNING: class included by absolute name (::$class) Change-Id: Idcc8db91bda9b71e0ed5f05f7f4c9fe587ae6b0b --- manifests/openstackclient.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/openstackclient.pp b/manifests/openstackclient.pp index ade510d2..b75abedb 100644 --- a/manifests/openstackclient.pp +++ b/manifests/openstackclient.pp @@ -15,7 +15,7 @@ class openstacklib::openstackclient( $package_name = $::openstacklib::params::openstackclient_package_name, $package_ensure = 'present', -) inherits ::openstacklib::params { +) inherits openstacklib::params { ensure_packages($package_name, { 'ensure' => $package_ensure,