From c6e166319a3f648933d127f02aa2204527e2a3f5 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Thu, 17 Oct 2024 20:17:42 +0100 Subject: [PATCH] test: use password to generate random string instead of range (#84129) * Use password lookup instead of range Co-authored-by: Abhijeet Kasurde --- test/integration/targets/git/tasks/archive.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/targets/git/tasks/archive.yml b/test/integration/targets/git/tasks/archive.yml index 588148d570c..f749de6979a 100644 --- a/test/integration/targets/git/tasks/archive.yml +++ b/test/integration/targets/git/tasks/archive.yml @@ -84,7 +84,7 @@ - name: ARCHIVE | Generate an archive prefix set_fact: - git_archive_prefix: '{{ range(2 ** 31, 2 ** 32) | random }}' # Generate some random archive prefix + git_archive_prefix: "{{ lookup('ansible.builtin.password', '/dev/null', length=10, chars=['digits']) }}" # Generate some random archive prefix - name: ARCHIVE | Archive repo using various archival format and with an archive prefix git: