From a1f4a302546a123ce35bcdd18154d25f473228f3 Mon Sep 17 00:00:00 2001 From: Paul Maruhn <paulmaruhn@posteo.de> Date: Sat, 20 Nov 2021 02:13:33 +0100 Subject: [PATCH] fix some warnings --- roles/base/tasks/main.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/roles/base/tasks/main.yml b/roles/base/tasks/main.yml index 5cd6937..a407b2a 100644 --- a/roles/base/tasks/main.yml +++ b/roles/base/tasks/main.yml @@ -18,7 +18,10 @@ # configurations and stuff - name: set local timezone - file: state=link src=/usr/share/zoneinfo/Europe/Berlin dest=/etc/localtime + file: + state: link + src: /usr/share/zoneinfo/Europe/Berlin + dest: /etc/localtime - name: set locales tags: [base] @@ -36,7 +39,10 @@ - name: Disable root login with password tags: [base] - lineinfile: dest=/etc/ssh/sshd_config regexp="^#?PermitRootLogin" line="PermitRootLogin without-password" + lineinfile: + dest: /etc/ssh/sshd_config + regexp: "^#?PermitRootLogin" + line: "PermitRootLogin without-password" - name: reload sysctl command: sysctl -p --system @@ -48,8 +54,10 @@ line: "42\tfreifunk" - name: copy host specific configs - copy: src=host/{{ inventory_hostname }}/etc/ dest=/etc tags: [bird] + copy: + src: host/{{ inventory_hostname }}/etc/ + dest: /etc - name: networkd templates tags: [systemd-networkd] -- GitLab