From 7a6fa33e77406a7fcc0c28b71eff1fb9b8f1a115 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 16 Jul 2020 10:26:03 +0900 Subject: [PATCH] Eliminate remaining class inclusions by absolute names Change-Id: Ia0cc5d8aa3e4daaf2be0889f82d2186e92553348 --- examples/all.pp | 2 +- examples/site.pp | 12 ++++++------ manifests/storage.pp | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/all.pp b/examples/all.pp index eb748e86..a3812c27 100644 --- a/examples/all.pp +++ b/examples/all.pp @@ -59,7 +59,7 @@ class { 'swift::proxy': account_autocreate => true, require => Class['swift::ringbuilder'], } -class { ['::swift::proxy::healthcheck', '::swift::proxy::cache']: } +class { ['swift::proxy::healthcheck', 'swift::proxy::cache']: } class { 'swift::proxy::tempauth': account_user_list => [ diff --git a/examples/site.pp b/examples/site.pp index 01639aba..c018b6c8 100644 --- a/examples/site.pp +++ b/examples/site.pp @@ -221,12 +221,12 @@ node /swift-proxy/ { # configure all of the middlewares class { [ - '::swift::proxy::account_quotas', - '::swift::proxy::catch_errors', - '::swift::proxy::container_quotas', - '::swift::proxy::healthcheck', - '::swift::proxy::cache', - '::swift::proxy::s3api', + 'swift::proxy::account_quotas', + 'swift::proxy::catch_errors', + 'swift::proxy::container_quotas', + 'swift::proxy::healthcheck', + 'swift::proxy::cache', + 'swift::proxy::s3api', ]: } class { 'swift::proxy::bulk': max_containers_per_extraction => 10000, diff --git a/manifests/storage.pp b/manifests/storage.pp index beab2b65..554cc585 100644 --- a/manifests/storage.pp +++ b/manifests/storage.pp @@ -31,7 +31,7 @@ class swift::storage( include swift::deps if !defined(Class['rsync::server']){ - class{ '::rsync::server': + class{ 'rsync::server': use_xinetd => $rsync_use_xinetd, address => $storage_local_net_ip, use_chroot => 'no',