Browse Source

add support for changing unit's state, enabling/disable units & automatically instructing systemd to reload unit file when `systemd_unit_scope: user`

Fabian Peter Hammerle 1 year ago
parent
commit
62982da952
2 changed files with 5 additions and 3 deletions
  1. 1 1
      README.md
  2. 4 2
      tasks/main.yml

+ 1 - 1
README.md

@@ -32,5 +32,5 @@ systemd_unit_config_changed
 
 ## Limitations
 
-For `systemd_unit_scope != "system"` the following features are not yet supported:
+For `systemd_unit_scope == "global"` the following features are not yet supported:
 automatic daemon reloads, changing unit's state and enabling/disabling units

+ 4 - 2
tasks/main.yml

@@ -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