Skip to content

Commit

Permalink
Update load_tests_int.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
varunsh-coder authored Sep 15, 2024
1 parent b6d44f8 commit c32288e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/load_tests_int.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,23 @@ jobs:
github.com:443
goreleaser.com:443
- name: List and print .network files in /etc/systemd/network
run: |
if [ -d /etc/systemd/network ]; then
echo "Listing .network files in /etc/systemd/network:"
ls /etc/systemd/network/*.network || echo "No .network files found."
echo "Printing contents of .network files:"
for file in /etc/systemd/network/*.network; do
if [ -f "$file" ]; then
echo "Contents of $file:"
cat "$file"
echo ""
fi
done
else
echo "/etc/systemd/network directory does not exist."
fi
- run: resolvectl status

- name: Configure systemd-resolved to use custom DNS servers only
Expand Down

0 comments on commit c32288e

Please sign in to comment.