diff options
Diffstat (limited to 'roles/sshd/tasks')
-rw-r--r-- | roles/sshd/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/sshd/tasks/main.yml b/roles/sshd/tasks/main.yml index c4dd9ea..a0f2ba3 100644 --- a/roles/sshd/tasks/main.yml +++ b/roles/sshd/tasks/main.yml @@ -1,7 +1,7 @@ --- - name: Configure sshd - become: True - lineinfile: + become: true + ansible.builtin.lineinfile: dest: "/etc/ssh/sshd_config" regexp: "{{ item.regex }}" line: "{{ item.line }}" @@ -10,4 +10,4 @@ - { regex: '^(#\s*)?PermitEmptyPasswords' , line: 'PermitEmptyPasswords no' } - { regex: '^(#\s*)?PermitRootLogin' , line: 'PermitRootLogin no' } - { regex: '^(#\s*)?PasswordAuthentication', line: 'PasswordAuthentication no' } - - { regex: '^(#\s*)?UsePAM' , line: 'UsePAM yes' }
\ No newline at end of file + - { regex: '^(#\s*)?UsePAM' , line: 'UsePAM yes' } |