mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-14 16:58:58 +03:00
6 lines
137 B
Bash
6 lines
137 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Point to Google's DNS server
|
||
|
|
sed -i -e 's/#DNS=/DNS=8.8.8.8/' /etc/systemd/resolved.conf
|
||
|
|
|
||
|
|
service systemd-resolved restart
|