Remove debug output of settings variables in runtest.sh for cleaner execution

This commit is contained in:
Yaro Kasear 2025-04-16 11:35:50 -05:00
parent 53ec21227c
commit a951a5eb62
2 changed files with 0 additions and 25 deletions

View file

@ -2,22 +2,6 @@
source settings.env
# For debugging purposes, echo all variables from settings.env
echo "Settings loaded from settings.env:"
echo "INTERFACE: $INTERFACE"
echo "NUM_TESTS: $NUM_TESTS"
echo "NUM_SAMPLES: $NUM_SAMPLES"
echo "TIME_BETWEEN: $TIME_BETWEEN"
echo "LEAD_TIME: $LEAD_TIME"
echo "PING_TARGET: $PING_TARGET"
echo "PING_COUNT: $PING_COUNT"
echo "TEST_FILE: $TEST_FILE"
echo "ENRICHED_FILE: $ENRICHED_FILE"
echo "SCRIPT_DIRECTORY: $SCRIPT_DIRECTORY"
echo "BOOT_ID: $BOOT_ID"
echo "RECIPIENT: $RECIPIENT"
# Check if email recipient is set
if [ -z "$RECIPIENT" ]; then
echo "[!] Please set the RECIPIENT variable in settings.env."