From 4abca89ba509ef6a4621c3220390b6527b7a3f64 Mon Sep 17 00:00:00 2001 From: Adrien Date: Tue, 2 Jun 2020 21:34:51 +0200 Subject: [PATCH] fix lint --- handlers/main.yml | 5 +++-- tasks/main.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/handlers/main.yml b/handlers/main.yml index 03aff98..1e675b4 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -1,4 +1,5 @@ --- - name: Restart openvswitch - service: name="{{ openvswitch_service }}" state=restarted - + service: + name: "{{ openvswitch_service }}" + state: restarted diff --git a/tasks/main.yml b/tasks/main.yml index 72bbbee..bfc0b69 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -7,7 +7,7 @@ name: "{{ openvswitch_remove_packages }}" state: absent update_cache: yes - notify: Restart openvswitch + notify: Restart openvswitch - name: Include tasks for {{ ansible_os_family }} include_tasks: "{{ ansible_os_family }}.yml"