fix DNS resolution
This commit is contained in:
parent
e5a5dca777
commit
c3dc4a2ecd
@ -9,7 +9,11 @@ commands:
|
||||
- run:
|
||||
name: "Configure Google DNS"
|
||||
command: |
|
||||
echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf
|
||||
# Backup original resolv.conf
|
||||
sudo cp /etc/resolv.conf /etc/resolv.conf.backup
|
||||
# Add both local and Google DNS servers
|
||||
echo "nameserver 127.0.0.11" | sudo tee /etc/resolv.conf
|
||||
echo "nameserver 8.8.8.8" | sudo tee -a /etc/resolv.conf
|
||||
echo "nameserver 8.8.4.4" | sudo tee -a /etc/resolv.conf
|
||||
|
||||
jobs:
|
||||
@ -242,6 +246,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- checkout
|
||||
- setup_google_dns
|
||||
- run:
|
||||
name: Show git commit hash
|
||||
command: |
|
||||
|
||||
Loading…
Reference in New Issue
Block a user