Fix lint errors with the latest lint packages

This change fixes the following lint errors discovered since we removed
pin of lint packages.

manifests/api.pp:281:WARNING: class included by absolute name
(::$class)
manifests/init.pp:33:WARNING: class included by absolute name
(::$class)
manifests/keystone/auth.pp:79:WARNING: class included by absolute name
(::$class)
manifests/metadata.pp:93:WARNING: class included by absolute name
(::$class)

Change-Id: I5bb85e2e17bcbf4761e9ab765706e3ce070c675e
This commit is contained in:
Takashi Kajinami 2021-05-11 18:51:48 +09:00
parent 549a20bff2
commit 443bcebe4b
4 changed files with 4 additions and 4 deletions

View File

@ -278,7 +278,7 @@ class ec2api::api (
$manage_service = true,
$service_name = $::ec2api::params::api_service_name,
$enabled = true,
) inherits ::ec2api::params {
) inherits ec2api::params {
include ec2api::deps

View File

@ -30,7 +30,7 @@ class ec2api (
$package_name = $::ec2api::params::package_name,
$package_provider = undef,
$purge_config = false,
) inherits ::ec2api::params {
) inherits ec2api::params {
include ec2api::deps
include ec2api::config

View File

@ -76,7 +76,7 @@ class ec2api::keystone::auth (
$public_url = 'http://127.0.0.1:8788',
$admin_url = 'http://127.0.0.1:8788',
$internal_url = 'http://127.0.0.1:8788',
) inherits ::ec2api::params {
) inherits ec2api::params {
include ec2api::deps

View File

@ -90,7 +90,7 @@ class ec2api::metadata (
$manage_service = true,
$service_name = $::ec2api::params::metadata_service_name,
$enabled = true,
) inherits ::ec2api::params {
) inherits ec2api::params {
include ec2api::deps