10 lines
192 B
Bash
Executable File
10 lines
192 B
Bash
Executable File
#!/usr/bin/bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
"$SCRIPT_DIR/pd_backup_postgres.sh"
|
|
"$SCRIPT_DIR/pd_backup_sync_to_serenity.sh"
|
|
|
|
echo "PD backup run complete."
|