diff options
author | An-Cheng Huang <ancheng@sydney.vyatta.com> | 2007-10-24 10:01:04 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@sydney.vyatta.com> | 2007-10-24 10:01:04 -0700 |
commit | 1229e8c6f130c62c42900f424a772d4e9c5e8ef5 (patch) | |
tree | a89f7b29d4a7e62c803f3b0306922777681f319a /templates/system/domain-search | |
parent | b1fcb904eab1425d349fd7ab8d65b39c1bfb2e3f (diff) | |
download | vyatta-cfg-system-1229e8c6f130c62c42900f424a772d4e9c5e8ef5.tar.gz vyatta-cfg-system-1229e8c6f130c62c42900f424a772d4e9c5e8ef5.zip |
add 'sudo' for 'system' and 'service/ssh' configuration commands.
Diffstat (limited to 'templates/system/domain-search')
-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 d4e6c3c7..bc259182 100644 --- a/templates/system/domain-search/domain/node.def +++ b/templates/system/domain-search/domain/node.def @@ -2,11 +2,8 @@ multi: type: txt help: "Configure DNS domain completion order" syntax: pattern $(@) "^[-a-zA-Z0-9.]+$" ; "invalid domain name $(@)" -create: "sh -c \"touch /etc/resolv.conf && \ +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\" " -update: "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: "sh -c \"touch /etc/resolv.conf && \ +delete: "sudo sh -c \"touch /etc/resolv.conf && \ sed -i '/search\\\\t $(@)/d' /etc/resolv.conf\" " |