mirror of
https://github.com/willshersystems/ansible-sshd
synced 2025-01-06 23:40:19 +01:00
12 lines
371 B
YAML
12 lines
371 B
YAML
---
|
|
- name: Print that the sshd variable is deprecated
|
|
when: sshd is defined
|
|
ansible.builtin.debug:
|
|
msg: >-
|
|
The sshd variable is deprecated and will be removed
|
|
in a future version. Edit your playbook to use
|
|
the sshd_config variable instead.
|
|
|
|
- name: Invoke the role, if enabled
|
|
ansible.builtin.include_tasks: sshd.yml
|
|
when: sshd_enable|bool
|