mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Merge pull request #551 from kuba/augeas_configurator-apache
Move AugeasConfigurator to letsencrypt_apache.
This commit is contained in:
commit
a96a7e2641
5 changed files with 8 additions and 7 deletions
|
|
@ -1,5 +0,0 @@
|
|||
:mod:`letsencrypt.augeas_configurator`
|
||||
--------------------------------------
|
||||
|
||||
.. automodule:: letsencrypt.augeas_configurator
|
||||
:members:
|
||||
|
|
@ -27,3 +27,10 @@
|
|||
|
||||
.. automodule:: letsencrypt_apache.parser
|
||||
:members:
|
||||
|
||||
|
||||
:mod:`letsencrypt_apache.augeas_configurator`
|
||||
=============================================
|
||||
|
||||
.. automodule:: letsencrypt_apache.augeas_configurator
|
||||
:members:
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ import zope.interface
|
|||
from acme import challenges
|
||||
|
||||
from letsencrypt import achallenges
|
||||
from letsencrypt import augeas_configurator
|
||||
from letsencrypt import constants as core_constants
|
||||
from letsencrypt import errors
|
||||
from letsencrypt import interfaces
|
||||
|
|
@ -20,6 +19,7 @@ from letsencrypt import le_util
|
|||
|
||||
from letsencrypt.plugins import common
|
||||
|
||||
from letsencrypt_apache import augeas_configurator
|
||||
from letsencrypt_apache import constants
|
||||
from letsencrypt_apache import dvsni
|
||||
from letsencrypt_apache import obj
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -59,7 +59,6 @@ letsencrypt_install_requires = [
|
|||
# https://pyopenssl.readthedocs.org/en/latest/api/crypto.html#OpenSSL.crypto.X509Req.get_extensions
|
||||
'PyOpenSSL>=0.15',
|
||||
'pyrfc3339',
|
||||
'python-augeas',
|
||||
'python2-pythondialog>=3.2.2rc1', # Debian squeeze support, cf. #280
|
||||
'pytz',
|
||||
'requests',
|
||||
|
|
|
|||
Loading…
Reference in a new issue