Double-escape \ so that the config file is generated correctly

Thanks @lukebakken!

Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk>
This commit is contained in:
Gerhard Lazu 2020-03-16 10:52:39 +00:00
parent 7bfbdba2df
commit 382565c507
1 changed files with 16 additions and 16 deletions

View File

@ -182,14 +182,14 @@ $(if $(RABBITMQ_NODE_PORT), {tcp_listeners$(COMMA) [$(shell echo "$$((61613
{lager, [
{colors, [
%% https://misc.flogisoft.com/bash/tip_colors_and_formatting
{debug, "\e[0;34m" },
{info, "\e[1;37m" },
{notice, "\e[1;36m" },
{warning, "\e[1;33m" },
{error, "\e[1;31m" },
{critical, "\e[1;35m" },
{alert, "\e[1;44m" },
{emergency, "\e[1;41m" }
{debug, "\\\e[0;34m" },
{info, "\\\e[1;37m" },
{notice, "\\\e[1;36m" },
{warning, "\\\e[1;33m" },
{error, "\\\e[1;31m" },
{critical, "\\\e[1;35m" },
{alert, "\\\e[1;44m" },
{emergency, "\\\e[1;41m" }
]}
]}
].
@ -232,14 +232,14 @@ define test_rabbitmq_config_with_tls
{lager, [
{colors, [
%% https://misc.flogisoft.com/bash/tip_colors_and_formatting
{debug, "\e[0;34m" },
{info, "\e[1;37m" },
{notice, "\e[1;36m" },
{warning, "\e[1;33m" },
{error, "\e[1;31m" },
{critical, "\e[1;35m" },
{alert, "\e[1;44m" },
{emergency, "\e[1;41m" }
{debug, "\\\e[0;34m" },
{info, "\\\e[1;37m" },
{notice, "\\\e[1;36m" },
{warning, "\\\e[1;33m" },
{error, "\\\e[1;31m" },
{critical, "\\\e[1;35m" },
{alert, "\\\e[1;44m" },
{emergency, "\\\e[1;41m" }
]}
]}
].