From cee528f46c75e3359205fbff1c88718a2d8bb8bf Mon Sep 17 00:00:00 2001 From: iliajie Date: Mon, 16 Jan 2023 20:51:44 +0200 Subject: [PATCH] Fix missing module reference as requesting Let's Encrypt certificate --- webmin/letsencrypt-cleanup.pl | 2 +- webmin/letsencrypt-dns.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webmin/letsencrypt-cleanup.pl b/webmin/letsencrypt-cleanup.pl index f5fa6f475..37fcd1ded 100755 --- a/webmin/letsencrypt-cleanup.pl +++ b/webmin/letsencrypt-cleanup.pl @@ -35,7 +35,7 @@ if ($zone) { elsif ($d) { # Use Virtualmin API calls &virtual_server::obtain_lock_dns($d); - &pre_records_change($d); + &virtual_server::pre_records_change($d); ($recs, $file) = &virtual_server::get_domain_dns_records_and_file($d); $wapi = 1; } diff --git a/webmin/letsencrypt-dns.pl b/webmin/letsencrypt-dns.pl index 484184213..95d0cd302 100755 --- a/webmin/letsencrypt-dns.pl +++ b/webmin/letsencrypt-dns.pl @@ -37,7 +37,7 @@ if ($zone) { elsif ($d) { # Use Virtualmin API calls &virtual_server::obtain_lock_dns($d); - &pre_records_change($d); + &virtual_server::pre_records_change($d); ($recs, $file) = &virtual_server::get_domain_dns_records_and_file($d); $wapi = 1; }