From 0c98cd2862f90abb2edaf408f2ea6f70d260f4d9 Mon Sep 17 00:00:00 2001 From: Alexandre Chapellon Date: Mon, 3 Apr 2023 15:21:07 +0200 Subject: [PATCH] workaround https://github.com/ansible/ansible/issues/80387 --- scripts/generate-secret.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-secret.sh b/scripts/generate-secret.sh index f06cf22a8..57d606dca 100755 --- a/scripts/generate-secret.sh +++ b/scripts/generate-secret.sh @@ -25,7 +25,7 @@ RANDOM_STRING=$(\ ANSIBLE_FORCE_COLOR=False \ ANSIBLE_NOCOLOR=True \ ansible -m ansible.builtin.command \ - -a "echo {{ lookup('password','/dev/null',chars=['ascii_letters','digits','+.$?/#@^;{}()[]_'],length=33) }}" \ + -a "echo {{ lookup('password','/dev/null',chars=['ascii_letters','digits','+.$?/#@^;}()[]_'],length=33) }}" \ localhost -o 2>/dev/null \ | awk '{print $NF}' \ )