|
@@ -1,3 +1,10 @@
|
|
|
+---
|
|
|
+- name: create parent folder for unit files
|
|
|
+ ansible.builtin.file:
|
|
|
+ dest: ~/.config/systemd/user
|
|
|
+ state: directory
|
|
|
+ when: systemd_unit_scope == 'user'
|
|
|
+ register: _config_dir
|
|
|
- name: 'configure systemd unit {{ systemd_unit_name }}'
|
|
|
copy:
|
|
|
dest: '{{ _config_dir_path }}/{{ systemd_unit_name }}'
|
|
@@ -7,7 +14,7 @@
|
|
|
mode: a=r
|
|
|
vars: ©_config_file_vars
|
|
|
_config_dir_path: >-
|
|
|
- {{ '~/.config/systemd/user' if systemd_unit_scope == 'user'
|
|
|
+ {{ _config_dir.path if systemd_unit_scope == 'user'
|
|
|
else '/etc/systemd/' + (
|
|
|
"user" if systemd_unit_scope == "global" else systemd_unit_scope
|
|
|
) }}
|