mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-04-05 07:06:08 +00:00
- Adds a `search_domain` of `httpbin.test` in seeds - Updates one of our DNS resources under CI test to use this
16 lines
414 B
Bash
Executable File
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"
|