|
@@ -39,12 +39,14 @@
|
|
|
{{ _config_file.changed or _dropin_config_file.changed }}
|
|
|
- name: 'fetch state of systemd unit {{ systemd_unit_name }}'
|
|
|
systemd:
|
|
|
+ scope: '{{ systemd_unit_scope }}'
|
|
|
name: '{{ systemd_unit_name }}'
|
|
|
register: _unit
|
|
|
- when: systemd_unit_scope == 'system'
|
|
|
+ when: systemd_unit_scope in ('system', 'user')
|
|
|
and (systemd_unit_config_changed or systemd_unit_restart_if_active)
|
|
|
- name: 'set state of systemd unit {{ systemd_unit_name }}'
|
|
|
systemd:
|
|
|
+ scope: '{{ systemd_unit_scope }}'
|
|
|
daemon_reload: '{{ systemd_unit_config_changed }}'
|
|
|
name: '{{ systemd_unit_name }}'
|
|
|
enabled: '{{ systemd_unit_enabled | default(omit) }}'
|
|
@@ -59,7 +61,7 @@
|
|
|
and _unit.status.ActiveState == "active"
|
|
|
else systemd_unit_state | default(omit) }}
|
|
|
when: >-
|
|
|
- systemd_unit_scope == 'system'
|
|
|
+ systemd_unit_scope in ('system', 'user')
|
|
|
and (systemd_unit_config_changed
|
|
|
or systemd_unit_enabled is defined
|
|
|
or systemd_unit_state is defined
|