Skip to content

Commit 3efe440

Browse files
committed
Adding more diagnostic testing
1 parent 3b71ba1 commit 3efe440

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/task_acceptance_tests.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,18 @@ jobs:
2222

2323
runs-on: 'ubuntu-latest'
2424
steps:
25-
- name: Network diagnostics
25+
- name: Debug internal DNS resolution
2626
run: |
27-
nslookup puppet.twingate.com
27+
echo "=== Testing internal domain resolution ==="
28+
nslookup artifactory.delivery.puppetlabs.net || echo "nslookup failed"
29+
dig artifactory.delivery.puppetlabs.net || echo "dig failed"
30+
31+
echo "=== Current DNS servers ==="
32+
cat /etc/resolv.conf
33+
34+
echo "=== Twingate status ==="
35+
sudo systemctl status twingate || echo "systemctl not available"
36+
ps aux | grep twingate || echo "no twingate processes visible"
2837
2938
- name: Connect to Twingate
3039
uses: twingate/github-action@v1

0 commit comments

Comments
 (0)