From c3e8ab9bc04edd38452f5e64cfb64510917ca27d Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 9 Jul 2020 16:01:09 +0900 Subject: [PATCH] Use relative name for class inclusion This patch replces the remaining usage of absolute name in class inclusion and makes all class inclusion depend on relative name. Change-Id: I4f35b80c12eb6bad0b34cd93cf2ddf296f3d36b5 --- manifests/proxy/audit.pp | 2 +- manifests/proxy/symlink.pp | 2 +- manifests/storage/cron/recon.pp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/proxy/audit.pp b/manifests/proxy/audit.pp index 39aa8596..961f6f1e 100644 --- a/manifests/proxy/audit.pp +++ b/manifests/proxy/audit.pp @@ -22,7 +22,7 @@ class swift::proxy::audit ( $audit_map_file = '/etc/pycadf/swift_api_audit_map.conf', ) { - include ::swift::deps + include swift::deps swift_proxy_config { 'filter:audit/paste.filter_factory': value => $filter_factory; diff --git a/manifests/proxy/symlink.pp b/manifests/proxy/symlink.pp index 5c30526c..b4f4b903 100644 --- a/manifests/proxy/symlink.pp +++ b/manifests/proxy/symlink.pp @@ -14,7 +14,7 @@ # # == Example # -# include ::swift::proxy::symlink +# include swift::proxy::symlink # # == Parameters # diff --git a/manifests/storage/cron/recon.pp b/manifests/storage/cron/recon.pp index bda7c3d8..4bb362df 100644 --- a/manifests/storage/cron/recon.pp +++ b/manifests/storage/cron/recon.pp @@ -53,8 +53,8 @@ class swift::storage::cron::recon( $configfile = '/etc/swift/object-server.conf', $user = 'swift' ) { - include ::swift::deps - include ::swift::params + include swift::deps + include swift::params cron { 'swift-recon-cron': command => "swift-recon-cron ${configfile}",