mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
Merge pull request #2906 from fraenki/acme_390
security/acme-client: release 3.9
This commit is contained in:
commit
26c4bd0cf0
6 changed files with 17 additions and 6 deletions
|
|
@ -1,6 +1,5 @@
|
|||
PLUGIN_NAME= acme-client
|
||||
PLUGIN_VERSION= 3.8
|
||||
PLUGIN_REVISION= 1
|
||||
PLUGIN_VERSION= 3.9
|
||||
PLUGIN_COMMENT= ACME Client
|
||||
PLUGIN_MAINTAINER= opnsense@moov.de
|
||||
PLUGIN_DEPENDS= acme.sh py${PLUGIN_PYTHON}-dns-lexicon
|
||||
|
|
|
|||
|
|
@ -8,6 +8,15 @@ WWW: https://github.com/acmesh-official/acme.sh
|
|||
Plugin Changelog
|
||||
================
|
||||
|
||||
3.9
|
||||
|
||||
Added:
|
||||
* add support for Transip DNS API ( #2871)
|
||||
* execution order of automations can be changed (#2833)
|
||||
|
||||
Fixed:
|
||||
* fix the use of a self hosted ACME-DNS service (#2898)
|
||||
|
||||
3.8
|
||||
|
||||
NOTE: Support for the cPanel and Selfhost API is not functional. It requires
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@
|
|||
<type>select_multiple</type>
|
||||
<style>tokenize</style>
|
||||
<allownew>true</allownew>
|
||||
<sortable>true</sortable>
|
||||
<help>Choose the automations that should be run after certificate creation and renewal. Basically every application requires a quick restart to reload the updated certificate. If you don't configure an automation, the in-memory certificate may expire and cause security warnings and other issues.</help>
|
||||
</field>
|
||||
<field>
|
||||
|
|
|
|||
|
|
@ -303,7 +303,7 @@
|
|||
<label>Password</label>
|
||||
<type>password</type>
|
||||
</field>
|
||||
<field>
|
||||
<field>
|
||||
<label>DDNSS API</label>
|
||||
<type>header</type>
|
||||
<style>table_dns table_dns_ddnss</style>
|
||||
|
|
@ -1069,12 +1069,13 @@
|
|||
<id>validation.dns_transip_username</id>
|
||||
<label>Username</label>
|
||||
<type>text</type>
|
||||
<help>Your TransIP username.</help>
|
||||
<help>Your TransIP username.</help>
|
||||
</field>
|
||||
<field>
|
||||
<id>validation.dns_transip_key</id>
|
||||
<label>API Key</label>
|
||||
<type>text</type>
|
||||
<help>Requires the whole key file in a format that is compatible with TransIP.</help>
|
||||
<help>Requires the whole key file in a format that is compatible with TransIP.</help>
|
||||
</field>
|
||||
<field>
|
||||
<label>UnoEuro</label>
|
||||
|
|
|
|||
|
|
@ -270,6 +270,7 @@
|
|||
</actions>
|
||||
</Model>
|
||||
<ValidationMessage>Related automation not found</ValidationMessage>
|
||||
<Sorted>Y</Sorted>
|
||||
<multiple>Y</multiple>
|
||||
<Required>N</Required>
|
||||
</restartActions>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Copyright (C) 2021 Frank Wall
|
||||
* Copyright (C) 2022 Juergen Kellerer
|
||||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue