mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-03-26 21:33:25 +00:00
10 lines
335 B
YAML
10 lines
335 B
YAML
---
|
|
- name: Include OS-specific variables
|
|
include_vars: '{{ ansible_os_family }}.yml'
|
|
when: not ansible_os_family == "Darwin" and not ansible_os_family == "FreeBSD"
|
|
|
|
- name: Install ssh-keygen
|
|
package:
|
|
name: '{{ openssh_client_package_name }}'
|
|
when: not ansible_os_family == "Darwin" and not ansible_os_family == "FreeBSD"
|