stop.sh
307 Bytes
#!/bin/bash
# Backward-compatible stop entrypoint.
# Delegates to unified service controller.
set -e
cd "$(dirname "$0")/.."
echo "========================================"
echo "Stopping saas-search services"
echo "========================================"
./scripts/service_ctl.sh stop
echo "Done."