From b0b67db35ea19ddd0660837c961da6a8820d4c06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 19 Feb 2016 11:02:40 +0100 Subject: [PATCH] letsencrypt: Force text mode This avoids letsencrypt trying to launch a dialog interface in case of certain errors. --- actions/letsencrypt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/letsencrypt b/actions/letsencrypt index 7461081a8..7dd4a6116 100755 --- a/actions/letsencrypt +++ b/actions/letsencrypt @@ -143,7 +143,7 @@ def subcommand_obtain(arguments): domain = arguments.domain command = [ - 'letsencrypt', 'certonly', '--agree-tos', + 'letsencrypt', 'certonly', '--text', '--agree-tos', '--register-unsafely-without-email', '--domain', arguments.domain, '--authenticator', 'webroot', '--webroot-path', '/var/www/html/', '--renew-by-default']