From c8855e76c14c6312a62a37a12fa5cd8328cdf967 Mon Sep 17 00:00:00 2001 From: Stephen Smoogen Date: Fri, 12 Jul 2019 14:24:30 +0000 Subject: [PATCH] [pagure] donkey forgot to put quotes around strings.. config file blew up.. who knew? --- roles/pagure/frontend/templates/pagure.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/pagure/frontend/templates/pagure.cfg b/roles/pagure/frontend/templates/pagure.cfg index f7f3b2d68b..fea4dbd90a 100644 --- a/roles/pagure/frontend/templates/pagure.cfg +++ b/roles/pagure/frontend/templates/pagure.cfg @@ -79,9 +79,9 @@ GIT_URL_GIT = 'https://pagure.io/' ### The IP addresses allowed for the internal endpoints {% if eth0_ipv6 is defined %} -IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', {{ eth0_ip }} , {{ eth0_ipv6 }}] +IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '{{ eth0_ip }}' , '{{ eth0_ipv6 }}'] {% elif eth0_ip is defined %} -IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', {{ eth0_ip }}] +IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '{{ eth0_ip }}'] {% else %} IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1'] {% endif %}