diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-12-06 22:33:49 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-12-06 22:33:49 +0100 |
commit | b7cdaac241843b03c1947c2981286e12fa050153 (patch) | |
tree | a0b41a3b24ff1a3012b217f466d4635a0c25963f /roles/sshd/tasks/main.yml | |
parent | 3b040fac09eb158caf963d7c956610f99f8e0c17 (diff) | |
download | ansible-memzero-b7cdaac241843b03c1947c2981286e12fa050153.tar.gz ansible-memzero-b7cdaac241843b03c1947c2981286e12fa050153.zip |
fix ansible-lint lints
Diffstat (limited to 'roles/sshd/tasks/main.yml')
-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' } |