Eliminate remaining class inclusions by absolute names

Change-Id: Ia0cc5d8aa3e4daaf2be0889f82d2186e92553348
This commit is contained in:
Takashi Kajinami 2020-07-16 10:26:03 +09:00
parent c3e8ab9bc0
commit 7a6fa33e77
3 changed files with 8 additions and 8 deletions

View File

@ -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 => [

View File

@ -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,

View File

@ -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',