|
@@ -20,10 +20,13 @@
|
|
{{ "restarted" if (systemd_unit_state is not defined
|
|
{{ "restarted" if (systemd_unit_state is not defined
|
|
or systemd_unit_state != "stopped")
|
|
or systemd_unit_state != "stopped")
|
|
and _config_file.changed
|
|
and _config_file.changed
|
|
|
|
+ and 'ActiveState' in _unit.status
|
|
and _unit.status.ActiveState == "active"
|
|
and _unit.status.ActiveState == "active"
|
|
else systemd_unit_state | default(omit) }}
|
|
else systemd_unit_state | default(omit) }}
|
|
when: >-
|
|
when: >-
|
|
_config_file.changed
|
|
_config_file.changed
|
|
or systemd_unit_enabled is defined
|
|
or systemd_unit_enabled is defined
|
|
or systemd_unit_state is defined
|
|
or systemd_unit_state is defined
|
|
- or (_config_file.changed and systemd_unit.status.ActiveState == "active")
|
|
|
|
|
|
+ or (_config_file.changed
|
|
|
|
+ and 'ActiveState' in _unit.status
|
|
|
|
+ and systemd_unit.status.ActiveState == "active")
|