Remove systemd conditionals

All operating systems supported by the role have systemd.

Change-Id: Ic74f1de9fb65b0b6231e0d94431a71aaa28aa67a
This commit is contained in:
Major Hayden 2018-02-15 08:40:04 -06:00
parent dd1f6278de
commit 4953e45683
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@
name: "{{ item.service_name }}"
enabled: yes
state: "stopped"
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
daemon_reload: yes
with_items: "{{ filtered_neutron_services }}"
register: _stop
until: _stop | success
@ -79,7 +79,7 @@
name: "{{ item.service_name }}"
enabled: yes
state: "started"
daemon_reload: "{{ (ansible_service_mgr == 'systemd') | ternary('yes', omit) }}"
daemon_reload: yes
with_items: "{{ filtered_neutron_services }}"
register: _start
until: _start | success

View File

@ -83,7 +83,7 @@
tags:
- neutron-config
- include_tasks: "neutron_init_{{ ansible_service_mgr }}.yml"
- include_tasks: neutron_init_systemd.yml
tags:
- neutron-config