From a050a3b25e460bd594f4f6dfdb6c8ea9c0061d72 Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Thu, 20 Feb 2020 13:41:56 +0100 Subject: [PATCH] copr: temporarily don't obtain letsencrypt certs on fe dev in aws This reverts commit 51f83dbc8774ed1974a72727ff0d9ed1ec231cf7. It still doesn't work properly --- roles/copr/frontend-cloud/tasks/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/copr/frontend-cloud/tasks/main.yml b/roles/copr/frontend-cloud/tasks/main.yml index 37fbebe7aa..d9dc15df0c 100644 --- a/roles/copr/frontend-cloud/tasks/main.yml +++ b/roles/copr/frontend-cloud/tasks/main.yml @@ -105,7 +105,9 @@ # development servers use Let's Encrypt - name: install letsencrypt ssl certificates for dev include_role: name=copr/certbot - when: devel|bool + when: + - devel|bool + - datacenter != "aws" tags: - config