├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── certbot_regru ├── __init__.py ├── dns.py └── dns_test.py ├── regru.ini ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free2er/certbot-regru/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free2er/certbot-regru/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free2er/certbot-regru/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free2er/certbot-regru/HEAD/README.md -------------------------------------------------------------------------------- /certbot_regru/__init__.py: -------------------------------------------------------------------------------- 1 | """Reg.ru DNS authenticator plugin for Certbot""" 2 | __version__ = '1.0.2' 3 | -------------------------------------------------------------------------------- /certbot_regru/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free2er/certbot-regru/HEAD/certbot_regru/dns.py -------------------------------------------------------------------------------- /certbot_regru/dns_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free2er/certbot-regru/HEAD/certbot_regru/dns_test.py -------------------------------------------------------------------------------- /regru.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free2er/certbot-regru/HEAD/regru.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free2er/certbot-regru/HEAD/setup.py --------------------------------------------------------------------------------