diff options
author | Colin Watson <cjwatson@debian.org> | 2024-10-17 21:17:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-17 21:17:42 +0200 |
commit | c6e166319a3f648933d127f02aa2204527e2a3f5 (patch) | |
tree | 4b1b417398ac3ca0bafef598474ae0fcbf8bb967 | |
parent | Faster host removal from a handler (#84091) (diff) | |
download | ansible-c6e166319a3f648933d127f02aa2204527e2a3f5.tar.xz ansible-c6e166319a3f648933d127f02aa2204527e2a3f5.zip |
test: use password to generate random string instead of range (#84129)
* Use password lookup instead of range
Co-authored-by: Abhijeet Kasurde <akasurde@redhat.com>
-rw-r--r-- | test/integration/targets/git/tasks/archive.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/git/tasks/archive.yml b/test/integration/targets/git/tasks/archive.yml index 588148d570..f749de6979 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: |