Skip to content

Commit 50bb026

Browse files
committed
Complying with coding standards.
Documented release notes.
1 parent 784af5b commit 50bb026

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

docs/RelNotes-2.1.0.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
====================
2+
v2.1.0 Release Notes
3+
====================
4+
5+
* implemented support for dns-01 challenge in Let's Encrypt plugin.

plugins.d/Lets_Encrypt/dns_01.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/usr/bin/python3
22
import sys
33
import subprocess
4+
import re
5+
46
from subprocess import PIPE
57
from os import path
68
from shutil import which
7-
import re
89

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

plugins.d/Lets_Encrypt/get_certificate.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
import requests
44
import sys
55
import subprocess
6+
67
from subprocess import PIPE
78
from os import path, remove
89
from shutil import copyfile, which
10+
911
import dns_01
1012

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

0 commit comments

Comments
 (0)