From 891daeffe02b51e43e43040b758316e7bcce5f6d Mon Sep 17 00:00:00 2001 From: Gianluca Giacometti <52405+gianlucagiacometti@users.noreply.github.com> Date: Sat, 28 Dec 2024 20:23:40 +0100 Subject: [PATCH] Update dns_fmdns.sh --- dnsapi/dns_fmdns.sh | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/dnsapi/dns_fmdns.sh b/dnsapi/dns_fmdns.sh index 9c8f16f3..017ef4f1 100644 --- a/dnsapi/dns_fmdns.sh +++ b/dnsapi/dns_fmdns.sh @@ -1,18 +1,18 @@ #!/usr/bin/env sh -# -# facileManager (https://github.com/WillyXJ/facileManager) hook script for acme.sh -# -# Author: Gianluca Giacometti -# Git repo and usage: https://github.com/gianlucagiacometti/proxmox-acme-facilemanager -# - -# Values to export: -# export FMDNS_API_ENDPOINT='https://my.fmdnsapi.endpoint' -# export FMDNS_API_TOKEN='xxxxx' -# export FMDNS_API_DOMAIN_ID='xxxxx' - -# IMPORTANT NOTE: set the validation delay at a minimum value of 360s, since facileManager usually updates dns zones every 300s +# shellcheck disable=SC2034 +dns_fmdns_info='facileManager DNS API + API for self-hosted facileManager DNS. +Domains: github.com/WillyXJ/facileManager +Site: github.com/gianlucagiacometti/proxmox-acme-facilemanager +Docs: github.com/acmesh-official/acme.sh/wiki/dnsapi2#dns_fmdns +Options: + FMDNS_API_ENDPOINT API Endpoint. Web address of the API endpoint. + FMDNS_API_TOKEN API Token. + FMDNS_API_DOMAIN_ID Domain ID. Domain ID in your facileManager database. +Issues: github.com/gianlucagiacometti/proxmox-acme-facilemanager +Author: Gianluca Giacometti +' ##################### Public functions #####################