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"