mirror of
https://github.com/borgbase/ansible-role-borgbackup.git
synced 2024-11-19 19:07:42 +01:00
9 lines
408 B
Plaintext
9 lines
408 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# We need to copy ssh keys at runtime because of the built-in volumes in the upstream Docker image definition
|
||
|
if [ -f "/{{ borg_ssh_key_name }}.pub" ]; then mv /{{ borg_ssh_key_name }}.pub /root/.ssh; fi
|
||
|
if [ -f "/{{ borg_ssh_key_name }}" ]; then mv /{{ borg_ssh_key_name }} /root/.ssh; fi
|
||
|
|
||
|
echo "$BACKUP_CRON" > /etc/borgmatic.d/crontab.txt
|
||
|
|
||
|
exec env SUPERCRONIC_EXTRA_FLAGS=-debug /entry.sh "$@"
|