fix!: fixed molecule tests, rewrote how custom variables are handled for hosts overrides; fixed invalid services names for clamav handlers

This commit is contained in:
NaeiKinDus 2023-11-29 00:00:00 +00:00
parent 6026cfd195
commit dafa3fbc54
Signed by: WoodSmellParticle
GPG key ID: 8E52ADFF7CA8AE56
23 changed files with 238 additions and 159 deletions

View file

@ -1,17 +1,17 @@
[user]
name = {{ common_gitconfig_username }}
email = {{ common_gitconfig_email }}
{% if common_gitconfig_force_sign and common_gitconfig_signingkey %}
signingkey = {{ common_gitconfig_signingkey }}
name = {{ common.git.username }}
email = {{ common.git.email }}
{% if common.git.force_sign and common.git.signing_key %}
signingkey = {{ common.git.signing_key }}
{% endif %}
[commit]
{% if common_gitconfig_force_sign %}
{% if common.git.force_sign %}
gpgsign = true
{% else %}
gpgsign = false
{% endif %}
[tag]
{% if common_gitconfig_force_sign %}
{% if common.git.force_sign %}
gpgsign = true
{% else %}
gpgsign = false
@ -104,4 +104,4 @@
statusUoption = false
submoduleAlternateErrorStrategyDie = false
waitingForEditor = false
{% endraw %}
{% endraw %}