1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-09-20 21:23:31 +02:00

Fix offsite backup ansible playbooks

This commit is contained in:
Sven-Hendrik Haase 2021-06-02 17:39:15 +02:00 committed by Kristian Klausen
parent 41fba899e9
commit 86ad99334e
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#jinja2: lstrip_blocks: True
# Arch DevOps keys
{% for user in root_ssh_keys | sort -%}
{{ lookup('file', '../pubkeys/' + user) }}
{% for user in root_ssh_keys | sort(attribute='key') -%}
{{ lookup('file', '../pubkeys/' + user.key) }}
{% endfor %}
# Client machines keys

View File

@ -1,7 +1,7 @@
#jinja2: lstrip_blocks: True
# Arch DevOps keys
{% for user in root_ssh_keys | sort -%}
{{ lookup('file', '../pubkeys/' + user) }}
{% for user in root_ssh_keys | sort(attribute='key') -%}
{{ lookup('file', '../pubkeys/' + user.key) }}
{% endfor %}
# Client machines keys