7 lines
215 B
Bash
Executable File
7 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
# Compatibility wrapper: old two-node script name -> new single-node start script
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec bash "${SCRIPT_DIR}/04-start-fips.sh"
|