diff options
author | Marat Nepomnyashy <marat@eng-158.vyatta.com> | 2007-12-18 16:53:56 -0800 |
---|---|---|
committer | Marat Nepomnyashy <marat@eng-158.vyatta.com> | 2007-12-18 16:53:56 -0800 |
commit | 7dac33b3bfebabb3a9b95dfe6a0578b9f1c31453 (patch) | |
tree | 5acd7f3ded71a879c5e845a4a3e4a233c3ce2857 /templates/system/domain-search/domain/node.def | |
parent | c30fc4752c878c12255101aa928c64f7a3511020 (diff) | |
download | vyatta-cfg-system-7dac33b3bfebabb3a9b95dfe6a0578b9f1c31453.tar.gz vyatta-cfg-system-7dac33b3bfebabb3a9b95dfe6a0578b9f1c31453.zip |
Rewrite '/etc/resolv.conf' each time config at 'system domain-search domain $(@)' changes to update the 'search' params. Bug 2113 fix.
Diffstat (limited to 'templates/system/domain-search/domain/node.def')
-rw-r--r-- | templates/system/domain-search/domain/node.def | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/templates/system/domain-search/domain/node.def b/templates/system/domain-search/domain/node.def index bc259182..e29df293 100644 --- a/templates/system/domain-search/domain/node.def +++ b/templates/system/domain-search/domain/node.def @@ -2,8 +2,5 @@ multi: type: txt help: "Configure DNS domain completion order" syntax: pattern $(@) "^[-a-zA-Z0-9.]+$" ; "invalid domain name $(@)" -update: "sudo sh -c \"touch /etc/resolv.conf && \ -if grep -q 'search\t $(@)' /etc/resolv.conf; then exit 0; \ -else echo \\\"search\t $(@)\\\" >> /etc/resolv.conf; fi\" " -delete: "sudo sh -c \"touch /etc/resolv.conf && \ -sed -i '/search\\\\t $(@)/d' /etc/resolv.conf\" " +update: "sudo /opt/vyatta/sbin/vyatta_update_resolv.pl" +delete: "sudo /opt/vyatta/sbin/vyatta_update_resolv.pl" |