From 15054948ed77b0ce92e2eaa88cf21a41e6f0ce98 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 8 Jul 2022 01:02:05 +0900 Subject: [PATCH] Remove warning about old incoming/outcoming chmod This removes the warning messages to prepare changing the default values. These should have been removed when we made actual change[1]. [1] e52ebb053b62b61bfe26cdf338d71a2f47d2d0e9 Change-Id: I804367f36e5f9b80fc9c43078135420e8241f129 --- manifests/storage/server.pp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/manifests/storage/server.pp b/manifests/storage/server.pp index 7f226012..5cc863fb 100644 --- a/manifests/storage/server.pp +++ b/manifests/storage/server.pp @@ -244,14 +244,6 @@ define swift::storage::server( $user_real = pick($user, $::swift::params::user) - if ($incoming_chmod == '0644') { - warning('The default incoming_chmod set to 0644 may yield in error prone directories and will be changed in a later release.') - } - - if ($outgoing_chmod == '0644') { - warning('The default outgoing_chmod set to 0644 may yield in error prone directories and will be changed in a later release.') - } - # Warn if ${type-server} isn't included in the pipeline $pipeline_array = any2array($pipeline) if !member($pipeline_array, "${type}-server") {