From 1890f35cfd4127fb533eaa56b3370a88bd62f703 Mon Sep 17 00:00:00 2001 From: Glen Huang Date: Sat, 19 Nov 2022 10:22:46 +0800 Subject: [PATCH] haproxy: use .crt as extension for certificates Signed-off-by: Glen Huang --- net/haproxy/Makefile | 2 +- net/haproxy/files/acme.hotplug | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index 6d2d2099c..179658361 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=haproxy PKG_VERSION:=2.6.6 -PKG_RELEASE:=$(AUTORELEASE) +PKG_RELEASE:=103 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://www.haproxy.org/download/2.6/src diff --git a/net/haproxy/files/acme.hotplug b/net/haproxy/files/acme.hotplug index 726d2b216..9896bbdee 100644 --- a/net/haproxy/files/acme.hotplug +++ b/net/haproxy/files/acme.hotplug @@ -1,8 +1,8 @@ case $ACTION in issued|renewed) cat \ - "/etc/ssl/acme/$main_domain.fullchain.cer" \ + "/etc/ssl/acme/$main_domain.fullchain.crt" \ "/etc/ssl/acme/$main_domain.key" \ - >"/etc/ssl/acme/$main_domain.combined.cer" + >"/etc/ssl/acme/$main_domain.combined.crt" ;; esac