Skip to content

Commit

Permalink
Complying with coding standards.
Browse files Browse the repository at this point in the history
Documented release notes.
  • Loading branch information
NitrogenUA committed Mar 31, 2023
1 parent 784af5b commit 50bb026
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/RelNotes-2.1.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
====================
v2.1.0 Release Notes
====================

* implemented support for dns-01 challenge in Let's Encrypt plugin.
3 changes: 2 additions & 1 deletion plugins.d/Lets_Encrypt/dns_01.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/usr/bin/python3
import sys
import subprocess
import re

from subprocess import PIPE
from os import path
from shutil import which
import re

LEXICON_CONF = '/usr/share/confconsole/letsencrypt/lexicon.yml'

Expand Down
2 changes: 2 additions & 0 deletions plugins.d/Lets_Encrypt/get_certificate.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
import requests
import sys
import subprocess

from subprocess import PIPE
from os import path, remove
from shutil import copyfile, which

import dns_01

LE_INFO_URL = 'https://acme-v02.api.letsencrypt.org/directory'
Expand Down

0 comments on commit 50bb026

Please sign in to comment.