From 72e69659fe0a51bf2e61cebdb0b3c66ee9e564ba Mon Sep 17 00:00:00 2001 From: Emil Renner Berthing Date: Wed, 26 Sep 2018 12:55:55 +0200 Subject: Format yaml lists like yaml.org --- roles/space_server/tasks/sshd.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'roles/space_server/tasks/sshd.yml') diff --git a/roles/space_server/tasks/sshd.yml b/roles/space_server/tasks/sshd.yml index efbfa97..aaf6452 100644 --- a/roles/space_server/tasks/sshd.yml +++ b/roles/space_server/tasks/sshd.yml @@ -4,7 +4,7 @@ name: openssh-server state: present tags: - - packages + - packages - name: Configure sshd lineinfile: @@ -12,12 +12,12 @@ regexp: '{{ item.regexp }}' line: '{{ item.line }}' with_items: - - regexp: '^PasswordAuthentication' - line: 'PasswordAuthentication no' - - regexp: '^#*GSSAPIAuthentication' - line: 'GSSAPIAuthentication no' + - regexp: '^PasswordAuthentication' + line: 'PasswordAuthentication no' + - regexp: '^#*GSSAPIAuthentication' + line: 'GSSAPIAuthentication no' notify: - - restart sshd + - restart sshd - name: Enable sshd service systemd: -- cgit v1.2.1