From 1fbb3d461201e330f40fe6bde1f6c841b2e72366 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 28 Dec 2021 17:16:57 +0100 Subject: [PATCH] fix indentation --- tasks/config.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tasks/config.yml b/tasks/config.yml index 1808fae..0424c51 100644 --- a/tasks/config.yml +++ b/tasks/config.yml @@ -28,18 +28,18 @@ when: item.key in ansible_interfaces or item.key.split(":")[0] in ansible_interfaces notify: __network_restart - - name: Add static routes - copy: - content: "{{ item.value }}" - dest: "/etc/sysconfig/network-scripts/route-{{ item.key }}" - owner: root - group: root - mode: 0644 - loop: "{{ network_routes | dict2items }}" - loop_control: - label: "{{ item.key }}" - when: item.key in ansible_interfaces - notify: __network_restart + - name: Add static routes + copy: + content: "{{ item.value }}" + dest: "/etc/sysconfig/network-scripts/route-{{ item.key }}" + owner: root + group: root + mode: 0644 + loop: "{{ network_routes | dict2items }}" + loop_control: + label: "{{ item.key }}" + when: item.key in ansible_interfaces + notify: __network_restart - name: Set dns server template: