fix inventory, roles and playbook

This commit is contained in:
2026-03-27 21:14:37 +01:00
parent bf1f284780
commit d875bd4efb
7 changed files with 49 additions and 21 deletions

View File

@@ -42,19 +42,19 @@ HOME_TARGETS=(
)
for i in "${HOME_TARGETS[@]}"; do
rsync -avP "machine:/home/vashqlf/${i}" "${HOME_PATH}${i}"
rsync -avP "machine:/home/vashqlf/${i}" "${HOME_PATH}"
done
echo "[INFO] $(date --rfc-3339 s) - Done!"
## Backup cloud hosts
# Strato1: vaultwarden
echo "[INFO] $(date --rfc-3339 s) - Syncing strato1:/home/pw-manager/vaultwarden..."
rsync -avP "strato1:/home/pw-manager/vaultwarden" "${BKP_PATH}vaultwarden"
rsync -avP "strato1:/home/pw-manager/vaultwarden" "${BKP_PATH}"
echo "[INFO] $(date --rfc-3339 s) - Done!"
# Strato3: Checkmk
echo "[INFO] $(date --rfc-3339 s) - Syncing strato3:/usr/local/share/cmk-bkp..."
rsync -avP "strato3:/usr/local/share/cmk-bkp" "${BKP_PATH}cmk-bkp"
rsync -avP "strato3:/usr/local/share/cmk-bkp" "${BKP_PATH}"
echo "[INFO] $(date --rfc-3339 s) - Done!"
echo "[INFO] $(date --rfc-3339 s) - Syncing completed, nothing more to do."