Skip to content
Snippets Groups Projects
Commit e3f4b262 authored by Kristian Klausen's avatar Kristian Klausen :tada:
Browse files

Merge branch 'fix-offsite-backup-ansible' into 'master'

Fix offsite backup ansible playbooks

See merge request !408
parents 41fba899 86ad9933
No related branches found
No related tags found
1 merge request!408Fix offsite backup ansible playbooks
Pipeline #7967 passed
#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
......
#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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment