mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-05-08 14:22:56 +00:00
Fix some ansible-lint issues (#907)
* Fix fqcn[action-core]. * Fix fqcn[action]. * Fix jinja[spacing].
This commit is contained in:
@@ -12,17 +12,17 @@
|
||||
block:
|
||||
- name: Ensure bcrypt 3.1.5 available
|
||||
become: true
|
||||
pip:
|
||||
ansible.builtin.pip:
|
||||
name: bcrypt==3.1.5
|
||||
extra_args: "-c {{ remote_constraints }}"
|
||||
|
||||
- name: Register bcrypt version
|
||||
command: "{{ ansible_python.executable }} -c 'import bcrypt; print(bcrypt.__version__)'"
|
||||
ansible.builtin.command: "{{ ansible_python.executable }} -c 'import bcrypt; print(bcrypt.__version__)'"
|
||||
register: bcrypt_version
|
||||
ignore_errors: true
|
||||
|
||||
- name: Ensure bcrypt_version is defined
|
||||
set_fact:
|
||||
ansible.builtin.set_fact:
|
||||
bcrypt_version:
|
||||
stdout: "0.0"
|
||||
when: bcrypt_version is failed
|
||||
|
||||
Reference in New Issue
Block a user