From 94060ff254ace5d91d9f310b3cc4be9b43d51832 Mon Sep 17 00:00:00 2001 From: missytake Date: Tue, 8 Jul 2025 13:47:52 +0200 Subject: [PATCH] dovecot: never redownload the .deb file --- cmdeploy/src/cmdeploy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmdeploy/src/cmdeploy/__init__.py b/cmdeploy/src/cmdeploy/__init__.py index a50c23ce..20558d06 100644 --- a/cmdeploy/src/cmdeploy/__init__.py +++ b/cmdeploy/src/cmdeploy/__init__.py @@ -346,7 +346,7 @@ def _install_dovecot_package(package: str, arch: str): src=url, dest=deb_filename, sha256sum=sha256, - cache_time=60 * 60 * 24 * 30, # cache the .deb for a month + cache_time=9999999999999, # never redownload the package ) apt.deb(name=f"Install dovecot-{package}", src=deb_filename)