From 32d08914580a084c47a087704efece93bd790f0c Mon Sep 17 00:00:00 2001 From: Emil Renner Berthing Date: Tue, 25 Sep 2018 20:51:37 +0200 Subject: Keep consistent ordering of rules Do - name: ... module: dest/path: 'destination on target' src: ... state: ... owner: ... group: ... mode: ... with_*: ... notify: ... tags: ... --- roles/space_server/tasks/bird.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'roles/space_server/tasks/bird.yml') diff --git a/roles/space_server/tasks/bird.yml b/roles/space_server/tasks/bird.yml index 4dc4a7d..340bfc2 100644 --- a/roles/space_server/tasks/bird.yml +++ b/roles/space_server/tasks/bird.yml @@ -18,8 +18,8 @@ mode: 0755 - name: Create bird configuration copy: - src: '{{ item }}' dest: '/etc/bird/' + src: '{{ item }}' owner: root group: root mode: 0644 @@ -31,8 +31,8 @@ - name: Create bird.conf and bird6.conf symlinks file: path: '/etc/{{ item }}.conf' - state: link src: 'bird/{{ item }}.conf' + state: link force: yes with_items: - bird @@ -49,8 +49,8 @@ mode: 0755 - name: Start bird6 after networks are configured copy: - src: wait-online.conf dest: '/etc/systemd/system/bird6.service.d/wait-online.conf' + src: wait-online.conf owner: root group: root mode: 0644 -- cgit v1.2.1