Files
dante_beacon/dep.sh
2025-12-12 16:27:31 +01:00

9 lines
248 B
Bash
Executable File

#!/bin/bash
# Wrapper script to run DEP commands from project root
# Usage: sudo bash dep.sh [start|stop|status]
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
DEP_DIR="$SCRIPT_DIR/dep/dante_package"
cd "$DEP_DIR" && bash dep.sh "$@"