10 lines
179 B
YAML
10 lines
179 B
YAML
---
|
|
|
|
- hosts: all
|
|
tasks:
|
|
- replace:
|
|
path: /etc/ssh/sshd_config
|
|
regexp: 'PermitRootLogin yes'
|
|
replace: 'PermitRootLogin prohibit-password'
|
|
backup: yes
|