#!/bin/bash
# rsync-Stub: Verhalten per Umgebungsvariable steuerbar
# RSYNC_STUB_FAIL=1 → schlaegt fehl
if [ "${RSYNC_STUB_FAIL:-0}" = "1" ]; then
    exit 1
fi
exit 0
