summaryrefslogtreecommitdiff
path: root/test/integration/targets/setup_ssh_keygen/tasks/main.yml
blob: 885356d78941d712554200d57afc36cbdd728011 (plain)
1
2
3
4
5
6
7
8
- 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"