From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4cNlqB2Xlwz330D for ; Fri, 12 Sep 2025 20:08:22 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R13" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4cNlq66mbxz2xHd for ; Fri, 12 Sep 2025 20:08:18 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4cNlq51PMszJ2; Fri, 12 Sep 2025 20:08:17 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1757707697; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=jlAp/O9Jb740mdJqvtUIY7XP3hXmw9iVIztBHXzyzSo=; b=OVKd1r4kbdXd2hGn0vXgW+OYxUN+dwBg+NTA77nrYQZKAtac5jsG3CmRyBwac7u/MK2MnV aXtwUJuX3UzFuCBg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1757707697; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=jlAp/O9Jb740mdJqvtUIY7XP3hXmw9iVIztBHXzyzSo=; b=C9wWwDdq35GJGhh/EcExrjFU7hWmm+uLyNf79maqGR35UZJFM77y4fbm5WkdgxpbHsL5H2 Gof9+iNRLJzNHv2TEPRFw1Py9mOb3J8kxeQ9ZBATQa844L8UGqstto0ntY/jCjYbTUv9QI X9eZJA8M3pAiQLx2NtBv3wx2ER30yDf3vH5NGpz6DXXvMfx4NL314pGx5nBrndXBagS4lz x3BGPMzJjQQdt4eI2PMYTdJ5u28kuZ29Ukjm0j39ijVX6foWSJfJIw29FPnjkSdEU6yzeE nv5TjSedqvX3dNkjkCLxaq7wVbMf02pVtoN1bYFTNaBMfuu4W3vxt/SqPZsGUQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] dehydrated: Update to version 0.7.2 Date: Fri, 12 Sep 2025 22:08:08 +0200 Message-ID: <20250912200814.3489573-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - Update from version 0.7.1 to 0.7.2 - Update of rootfile not required - Changelog 0.7.2 Added - Implemented support for certificate profile selection - Added a configuration parameter to allow for timeouts during order processing (`ORDER_TIMEOUT`, defaults to 0 = no timeout) - Allowed for automatic deletion of old files (`AUTO_CLEANUP_DELETE`, disabled by default) Changed - Renew certificates with 32 days remaining (instead of 30) to avoid issues with monthly cronjobs (`RENEW_DAYS=32`) Fixed - Changed behaviour of `openssl req` stdin handling to fix compatibility with OpenSSL version 3.2+ Signed-off-by: Adolf Belka --- lfs/dehydrated | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lfs/dehydrated b/lfs/dehydrated index 821c1433b..ab2bf8acd 100644 --- a/lfs/dehydrated +++ b/lfs/dehydrated @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team # +# Copyright (C) 2007-2025 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -26,7 +26,7 @@ include Config SUMMARY = A client for signing certificates with an ACME server -VER = 0.7.1 +VER = 0.7.2 THISAPP = dehydrated-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = dehydrated -PAK_VER = 6 +PAK_VER = 7 DEPS = @@ -48,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 0b287537206936ceff33bde8bbb8ab7b13f28bf58cd29c898348db0cf5a83157fed4535da218ac48a810a93b99474e96334a27c062c157e2f164b0e516b47111 +$(DL_FILE)_BLAKE2 = a79f81e30b6687b012780a7949b877ef9db2f32c92906bf086f41ae325130afafe0d6f67bf49afa41b5f4a068509321a2a8ad03f8bb72b9d62d88d55e043a748 install : $(TARGET) -- 2.51.0