diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2008-08-05 16:35:44 +0000 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2008-08-05 16:35:44 +0000 |
commit | fe08c6b8586e63e9b441c73da1e9f712849e251e (patch) | |
tree | d3ee21d6a391fc22279ff264fa03353cefb9ba65 /templates/system/static-host-mapping/host-name/node.def | |
parent | 5249053c47fd72a36870c2195eefabc7915b92e5 (diff) | |
download | vyatta-cfg-quagga-fe08c6b8586e63e9b441c73da1e9f712849e251e.tar.gz vyatta-cfg-quagga-fe08c6b8586e63e9b441c73da1e9f712849e251e.zip |
change DNS forwarding CLI from 'service dns-forwarding' to 'service dns forward'
Diffstat (limited to 'templates/system/static-host-mapping/host-name/node.def')
-rw-r--r-- | templates/system/static-host-mapping/host-name/node.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/system/static-host-mapping/host-name/node.def b/templates/system/static-host-mapping/host-name/node.def index 187b21dd..07e6b25b 100644 --- a/templates/system/static-host-mapping/host-name/node.def +++ b/templates/system/static-host-mapping/host-name/node.def @@ -7,10 +7,10 @@ end: sudo sh -c " touch /etc/hosts sed -i '/ $VAR(@) .*#vyatta entry/d' /etc/hosts if [ -z \"$VAR(./inet/@)\" ]; then - if [ -d /opt/vyatta/config/active/service/dns-forwarding ]; then /etc/init.d/dnsmasq restart >&/dev/null; fi + if [ -d /opt/vyatta/config/active/service/dns/forward ]; then /etc/init.d/dnsmasq restart >&/dev/null; fi exit 0 fi declare -a aliases=( $VAR(alias/@@) ) echo -e \"$VAR(inet/@)\\t $VAR(@) \${aliases[*]} \\t #vyatta entry\" >> /etc/hosts - if [ -d /opt/vyatta/config/active/service/dns-forwarding ]; then /etc/init.d/dnsmasq restart >&/dev/null; fi" + if [ -d /opt/vyatta/config/active/service/dns/forward ]; then /etc/init.d/dnsmasq restart >&/dev/null; fi" |