Files
firezone/scripts/tests/direct-dns-two-resources.sh
Jamil 06aa485e18 ci: Use search_domain for one resource in CI test (#8393)
- Adds a `search_domain` of `httpbin.test` in seeds
- Updates one of our DNS resources under CI test to use this
2025-03-15 13:27:22 +00:00

16 lines
414 B
Bash
Executable File

#!/usr/bin/env bash
# The integration tests call this to test Linux DNS control, using the `/etc/resolv.conf`
# method which only works well inside Alpine Docker containers.
source "./scripts/tests/lib.sh"
RESOURCE1=dns
RESOURCE2=download.httpbin
echo "# Try to ping httpbin as DNS resource 1"
client_ping_resource "$RESOURCE1"
echo "# Try to ping httpbin as DNS resource 2"
client_ping_resource "$RESOURCE2"