mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
6 lines
181 B
Bash
6 lines
181 B
Bash
echo "Removing UseDNS=no from network files to fix DNS issue"
|
|
|
|
for file in /etc/systemd/network/*.network; do
|
|
[[ -f $file ]] || continue
|
|
sudo sed -i '/^UseDNS=no/d' "$file"
|
|
done |