workstation/roles/freebsd/tasks/ssh.yml

21 lines
436 B
YAML
Raw Normal View History

---
- name: Disable SSH passwords
become: true
lineinfile:
path: /etc/ssh/sshd_config
regexp: '^#?\w*PasswordAuthentication (yes|no)'
line: 'PasswordAuthentication no'
register: changed_ssh_config
- name: Enable SSH
become: true
service:
name: sshd
enabled: yes
state: started
- name: Restart SSH
become: true
service:
name: sshd
state: restarted
when: changed_ssh_config.changed == true