fix: support ssh allowedSignersFile and revocationFile
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
1765f54bfe
commit
ab3618b924
@ -5,6 +5,10 @@ git_package_name_merge_tool: meld
|
||||
|
||||
git_users: []
|
||||
# github:
|
||||
# allowedSignersFile:
|
||||
# - principals:
|
||||
# - max.mustermann@example.com
|
||||
# publicSSHKey: ssh-rsa AAAAX1...
|
||||
# config:
|
||||
# commit:
|
||||
# gpgSign: "true"
|
||||
@ -12,3 +16,5 @@ git_users: []
|
||||
# name: "root"
|
||||
# email: root@localhost
|
||||
# signingKey: gpg-fingerprint
|
||||
# revocationFile:
|
||||
# - ssh-rsa AAAAX1...
|
||||
|
@ -21,8 +21,10 @@
|
||||
group: "{{ getent_passwd[item.key][2] }}"
|
||||
mode: "0644"
|
||||
with_items:
|
||||
- .config/git/allowedSignersFile
|
||||
- .config/git/config
|
||||
- .config/git/message
|
||||
- .config/git/ignore
|
||||
- .config/git/revocationFile
|
||||
loop_control:
|
||||
loop_var: filename
|
||||
|
9
templates/.config/git/allowedSignersFile.j2
Normal file
9
templates/.config/git/allowedSignersFile.j2
Normal file
@ -0,0 +1,9 @@
|
||||
#
|
||||
# {{ ansible_managed }}
|
||||
#
|
||||
|
||||
{% if item.value.allowedSignersFile is defined and item.value.allowedSignersFile | length > 0%}
|
||||
{% for entry in item.value.allowedSignersFile %}
|
||||
{{ entry.principals | join(',') }} {{ entry.publicSSHKey }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
9
templates/.config/git/revocationFile.j2
Normal file
9
templates/.config/git/revocationFile.j2
Normal file
@ -0,0 +1,9 @@
|
||||
#
|
||||
# {{ ansible_managed }}
|
||||
#
|
||||
|
||||
{% if item.value.revocationFile is defined and item.value.revocationFile | length > 0%}
|
||||
{% for entry in item.value.revocationFile %}
|
||||
{{ entry }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
Loading…
x
Reference in New Issue
Block a user