8 lines
243 B
Text
8 lines
243 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
rsync -az --delete \
|
||
|
|
-e "ssh -i {{ restic_ssh_key }} -p {{ restic_ssh_port }} -o StrictHostKeyChecking=no -o BatchMode=yes" \
|
||
|
|
/srv/goaccess/reports/ \
|
||
|
|
{{ restic_user }}@{{ restic_host }}:analytics/
|