浏览代码

fix: do not skip unit config when `systemd_unit_config` contains undefined variable, fail instead

Fabian Peter Hammerle 7 月之前
父节点
当前提交
65268a9f61
共有 2 个文件被更改,包括 5 次插入3 次删除
  1. 4 2
      defaults/main.yml
  2. 1 1
      tasks/main.yml

+ 4 - 2
defaults/main.yml

@@ -1,3 +1,5 @@
-systemd_unit_scope: system # alternative: 'global' (all users)
+---
+systemd_unit_scope: system  # alternative: 'global' (all users)
+systemd_unit_config: null
 systemd_unit_dropin_config_name: override
-systemd_unit_restart_if_active: no
+systemd_unit_restart_if_active: false

+ 1 - 1
tasks/main.yml

@@ -19,7 +19,7 @@
            "user" if systemd_unit_scope == "global" else systemd_unit_scope
          ) }}
   register: _config_file
-  when: systemd_unit_config is defined
+  when: systemd_unit_config
 - name: 'create parent folder for drop-in config files of systemd unit {{ systemd_unit_name }}'
   file:
     path: '{{ _config_dir_path }}/{{ systemd_unit_name }}.d'