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: []
|
git_users: []
|
||||||
# github:
|
# github:
|
||||||
|
# allowedSignersFile:
|
||||||
|
# - principals:
|
||||||
|
# - max.mustermann@example.com
|
||||||
|
# publicSSHKey: ssh-rsa AAAAX1...
|
||||||
# config:
|
# config:
|
||||||
# commit:
|
# commit:
|
||||||
# gpgSign: "true"
|
# gpgSign: "true"
|
||||||
@ -12,3 +16,5 @@ git_users: []
|
|||||||
# name: "root"
|
# name: "root"
|
||||||
# email: root@localhost
|
# email: root@localhost
|
||||||
# signingKey: gpg-fingerprint
|
# signingKey: gpg-fingerprint
|
||||||
|
# revocationFile:
|
||||||
|
# - ssh-rsa AAAAX1...
|
||||||
|
@ -21,8 +21,10 @@
|
|||||||
group: "{{ getent_passwd[item.key][2] }}"
|
group: "{{ getent_passwd[item.key][2] }}"
|
||||||
mode: "0644"
|
mode: "0644"
|
||||||
with_items:
|
with_items:
|
||||||
|
- .config/git/allowedSignersFile
|
||||||
- .config/git/config
|
- .config/git/config
|
||||||
- .config/git/message
|
- .config/git/message
|
||||||
- .config/git/ignore
|
- .config/git/ignore
|
||||||
|
- .config/git/revocationFile
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: filename
|
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