From 57bc8f1db6eca7783643f4b3c6f17129393e899b Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sat, 3 Sep 2016 11:49:51 +0530 Subject: [PATCH] letsencrypt: Depend on the new certbot package Instead of the transitional package 'letsencrypt'. I believe, there is no need to rename the entire module to certbo since letsencrypt is stil a more apt name for the module. Let's Encrypt is a strong brand that people know. The service is still called Let's Encrypt. Only the automation tool has been renamed to certbot to avoid confusion of the service name. --- CHANGELOG.md | 1 + plinth/modules/letsencrypt/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ace6adbe4..88e3a4984 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ All notable changes to this project will be documented in this file. - xmpp: Switched to using ruamel.yaml to modify ejabberd config. - Exit with error if any of the setup steps fail. - actions: Hush some unneeded output of systemd. +- letsencrypt: Depend on the new certbot package. ## [0.10.0] - 2016-08-12 ### Added diff --git a/plinth/modules/letsencrypt/__init__.py b/plinth/modules/letsencrypt/__init__.py index c6248e191..b7a85d543 100644 --- a/plinth/modules/letsencrypt/__init__.py +++ b/plinth/modules/letsencrypt/__init__.py @@ -33,7 +33,7 @@ is_essential = True depends = ['apps', 'names'] -managed_packages = ['letsencrypt'] +managed_packages = ['certbot'] title = _('Certificates (Let\'s Encrypt)')