From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 600902D8DC8 for ; Wed, 10 Sep 2025 19:38:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757533132; cv=none; b=BkhrDYV9PXSz0c7e6h/IV53owqRv8UBokTmNdgByA5+NXBSrvF0JX03FudXoaGBJU35mSyWPq4pElRcINCn67eJrAmmqlmHT0npKsGEVkku4HVLpHXGDY3qjEbU080CnHRoEaLhwzu+lUCqP4Xlr/oVfLvlZU3KRlFjJqETEY6w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757533132; c=relaxed/simple; bh=HEjjsR3YkHAWgoc3TMqgtZSxFerVOUQ0b5BVOYp7QKg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=DjZbfysLkSaZUhaUlY/TOwYi0D96f15rdlTF8EwhX5BL7Ij2/dbmmVEKub1MU0qyok/tP41oljlo7ukMSDat8UQzw0dpURBK1XikDciYPrPQAiZbvD+5NZsXTalq5dzLEJ9Gf3KKPvd10TEbjvGZyJnXFmL8dhnhdVdw55s7500= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=VQ6YiWJn; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="VQ6YiWJn" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B1887C4CEF9; Wed, 10 Sep 2025 19:38:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1757533131; bh=HEjjsR3YkHAWgoc3TMqgtZSxFerVOUQ0b5BVOYp7QKg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VQ6YiWJnfA6jX0iVIubVVSiy/Fd51Z21L6MCRCbS7ufBmPNqpObfT5Nc+Volklkzm sDF9M3sFXyS2Wz9BZswd/KDMngwcuCJRCjTiUwKoW3mkyPWIgaereGFee14qa/T8ww 6cny21rt3CnP4bb3TaoHXOPgC/IefhhjN7molJycKypdwOP8L7Et11WaBPLAyVibt5 2lcmjaBuzC5ZkyQ7vTJDxufnEjujyLahlJjQiRu7MsPt74w3fvmfPDDmk2bnp3B46i s5FZndVfnxSTlMitgJVKK1q9x0bH6ZN7ph6XuOtny65AoQUbLjO+6pwJWa2ymVDXq3 skjUUk2lEXQbg== From: Chuck Lever To: Cc: Chuck Lever Subject: [PATCH v1 2/8] devconfig: Remove "dnf update" optimizations for terraform hosts Date: Wed, 10 Sep 2025 15:38:42 -0400 Message-ID: <20250910193849.779453-3-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250910193849.779453-1-cel@kernel.org> References: <20250910193849.779453-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever Using the fastest mirror seems to have some negative consequences when done on cloud systems. Signed-off-by: Chuck Lever --- playbooks/roles/devconfig/tasks/install-deps/redhat/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/playbooks/roles/devconfig/tasks/install-deps/redhat/main.yml b/playbooks/roles/devconfig/tasks/install-deps/redhat/main.yml index d7fef691adf9..1a287cf1885c 100644 --- a/playbooks/roles/devconfig/tasks/install-deps/redhat/main.yml +++ b/playbooks/roles/devconfig/tasks/install-deps/redhat/main.yml @@ -40,6 +40,8 @@ line: "fastestmirror=true" path: "/etc/dnf/dnf.conf" state: present + when: + - not kdevops_enable_terraform|bool - name: Increase the maximum number of concurrent package downloads become: true @@ -49,6 +51,8 @@ line: "max_parallel_downloads=10" path: "/etc/dnf/dnf.conf" state: present + when: + - not kdevops_enable_terraform|bool - name: Refresh cache and upgrade all present packages become: true -- 2.51.0