mirror of
https://github.com/oneclickvirt/pve.git
synced 2024-11-11 01:33:51 +08:00
15 lines
377 B
Bash
15 lines
377 B
Bash
|
#!/bin/bash
|
||
|
#from https://github.com/spiritLHLS/pve
|
||
|
|
||
|
DNS_SERVER="8.8.8.8"
|
||
|
RESOLV_CONF="/etc/resolv.conf"
|
||
|
|
||
|
grep -q "^nameserver ${DNS_SERVER}$" ${RESOLV_CONF}
|
||
|
|
||
|
if [ $? -eq 0 ]; then
|
||
|
echo "DNS server ${DNS_SERVER} already exists in ${RESOLV_CONF}."
|
||
|
else
|
||
|
echo "Adding DNS server ${DNS_SERVER} to ${RESOLV_CONF}..."
|
||
|
echo "nameserver ${DNS_SERVER}" >> ${RESOLV_CONF}
|
||
|
fi
|