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