You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/ssh_agent/tasks/main.yml

18 lines
372 B
YAML

- delegate_to: localhost
block:
# bcrypt is required for the ssh_keygen action
- name: install bcrypt
pip:
name: bcrypt
register: bcrypt
- import_tasks: tests.yml
environment:
ANSIBLE_FORCE_COLOR: no
always:
- name: uninstall bcrypt
pip:
name: bcrypt
state: absent
when: bcrypt is changed