Ethan Paul
c27460c47e
Split cloud VMs out from local VMs in 'cloud' group Generalize networkd install/config Generalize sshd config Create general update playbook Add host vm-host-nextcloud
26 lines
633 B
YAML
26 lines
633 B
YAML
- name: Turn off password authentication
|
|
become: true
|
|
replace:
|
|
path: /etc/ssh/sshd_config
|
|
regexp: "PasswordAuthentication yes"
|
|
replace: "PasswordAuthentication no"
|
|
|
|
- name: Turn off challenge response authentication
|
|
become: true
|
|
replace:
|
|
path: /etc/ssh/sshd_config
|
|
regexp: "ChallengeResponseAuthentication yes"
|
|
replace: "ChallengeResponseAuthentication no"
|
|
|
|
- name: Turn off GSSAPI authentication
|
|
become: true
|
|
replace:
|
|
path: /etc/ssh/sshd_config
|
|
regexp: "GSSAPIAuthentication yes"
|
|
replace: "GSSAPIAuthentication no"
|
|
|
|
- name: Restart sshd
|
|
service:
|
|
name: sshd
|
|
state: restarted
|