Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a02994-7685-7940-bf34-3555b8256018
8 lines
345 B
Bash
Executable file
8 lines
345 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Repository entry point. The deployed systemd wrapper uses the same Python
|
|
# implementation from /usr/local/lib/railiance-infra.
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
|
REPO_ROOT="$(cd -- "${SCRIPT_DIR}/../.." && pwd)"
|
|
exec python3 "${REPO_ROOT}/scripts/s1_backup.py" create "$@"
|