blob: 2afe0b0d5f248cae9daa55d397042d0ea4786864 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
multi:
type: ipv4
help: "Configure domain name server"
create: "sh -c \"touch /etc/resolv.conf && \
if grep -q '$(@)' /etc/resolv.conf; then exit 0; \
else echo \\\"nameserver\t $(@)\\\" >> /etc/resolv.conf; fi && \
if [ -f /etc/ntp/ntp.conf ] && grep -q 'server' /etc/ntp/ntp.conf; then \
/opt/vyatta/sbin/ntpd.init restart; fi\" "
update: "sh -c \"touch /etc/resolv.conf && \
if grep -q '$(@)' /etc/resolv.conf; then exit 0; \
else echo \\\"nameserver\t $(@)\\\" >> /etc/resolv.conf; fi && \
if [ -f /etc/ntp/ntp.conf ] && grep -q 'server' /etc/ntp/ntp.conf; then \
/opt/vyatta/sbin/ntpd.init restart; fi\" "
delete: "sh -c \"touch /etc/resolv.conf && \
sed -i '/$(@)/d' /etc/resolv.conf && \
if [ -f /etc/ntp/ntp.conf ] && grep -q 'server' /etc/ntp/ntp.conf; then \
/opt/vyatta/sbin/ntpd.init restart; fi\" "
|