2026-03-10 21:18:05 +01:00
|
|
|
#!/usr/bin/env bash
|
2026-08-23 13:13:13 +02:00
|
|
|
# Repository entry point. The deployed systemd wrapper uses the same Python
|
|
|
|
|
# implementation from /usr/local/lib/railiance-infra.
|
2026-03-10 21:18:05 +01:00
|
|
|
set -euo pipefail
|
|
|
|
|
|
2026-08-23 13:13:13 +02:00
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
|
REPO_ROOT="$(cd -- "${SCRIPT_DIR}/../.." && pwd)"
|
|
|
|
|
exec python3 "${REPO_ROOT}/scripts/s1_backup.py" create "$@"
|