blob: d2ce0c303b9cea01fb82053cf10d01e15f1d3b4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
multi:
type: ipv4
help: Set Domain Name Server (DNS)
update: touch /etc/resolv.conf
if grep -q "$VAR(@)\($\|[[:space:]]\)" /etc/resolv.conf; then
exit 0
else
cli_ns_array=($(awk '{if (!$3) print $2}' /etc/resolv.conf))
cli_ns_array_len=${#cli_ns_array[*]}
line_num=0
if [ $cli_ns_array_len -gt 0 ]; then
grepped_ns_line=`grep "${cli_ns_array[$cli_ns_array_len-1]}$" -n /etc/resolv.conf`
echo ${grepped_ns_line%%:*} > /etc/resolv_tmp.conf
line_num=`cat /etc/resolv_tmp.conf`
fi
head -$line_num /etc/resolv.conf > /etc/resolv_tmp.conf
echo "nameserver $VAR(@)" >> /etc/resolv_tmp.conf
total_lines=`cat /etc/resolv.conf | wc -l`
rest_lines=`expr $total_lines - $line_num`
tail -$rest_lines /etc/resolv.conf >> /etc/resolv_tmp.conf
mv -f /etc/resolv_tmp.conf /etc/resolv.conf
fi &&
if [ -d /opt/vyatta/config/active/service/dns/forwarding ]; then
/opt/vyatta/sbin/vyatta-dns-forwarding.pl --update-dnsforwarding >&/dev/null
fi &&
if [ -f /etc/ntp.conf ] && grep -q 'server' /etc/ntp.conf; then
/usr/sbin/invoke-rc.d ntp restart >&/dev/null
fi
delete:expression: "sudo sh -c \"touch /etc/resolv.conf && \
sed -i '/$VAR(@)$/d' /etc/resolv.conf && \
if [ -f /etc/ntp.conf ] && grep -q 'server' /etc/ntp.conf; then \
/usr/sbin/invoke-rc.d ntp restart >&/dev/null; \
fi && \
if [ -d /opt/vyatta/config/active/service/dns/forwarding ]; then \
/opt/vyatta/sbin/vyatta-dns-forwarding.pl --update-dnsforwarding >&/dev/null; \
fi\" "
|