mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 14:13:29 +00:00
Fix no use logic
This commit is contained in:
@@ -172,7 +172,7 @@ $config{'letsencrypt_webroot'} = $webroot;
|
||||
$config{'letsencrypt_mode'} = $mode;
|
||||
$config{'letsencrypt_size'} = $size;
|
||||
$config{'letsencrypt_subset'} = $subset;
|
||||
$config{'letsencrypt_nouse'} = !$usewebmin ? 1 : 0;
|
||||
$config{'letsencrypt_nouse'} = $usewebmin ? 0 : 1;
|
||||
&save_module_config();
|
||||
if (&foreign_check("webmincron")) {
|
||||
my $job = &find_letsencrypt_cron_job();
|
||||
|
||||
Reference in New Issue
Block a user