diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2007-10-19 11:25:38 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2007-10-19 11:25:38 -0700 |
commit | 724e9418e3f6acf81fcc29172de6c1f5e3335fa7 (patch) | |
tree | 384b0be3e93a8de0b0d890f5fee18d04590ea01c /templates/system/domain-search/domain/node.def | |
parent | 20c7a06a9dd38fb705a245cb755a351241113461 (diff) | |
download | vyatta-cfg-724e9418e3f6acf81fcc29172de6c1f5e3335fa7.tar.gz vyatta-cfg-724e9418e3f6acf81fcc29172de6c1f5e3335fa7.zip |
move "system" configuration templates/scripts to vyatta-cfg-system.
Diffstat (limited to 'templates/system/domain-search/domain/node.def')
-rw-r--r-- | templates/system/domain-search/domain/node.def | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/templates/system/domain-search/domain/node.def b/templates/system/domain-search/domain/node.def deleted file mode 100644 index d4e6c3c..0000000 --- a/templates/system/domain-search/domain/node.def +++ /dev/null @@ -1,12 +0,0 @@ -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 && \ -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 && \ -sed -i '/search\\\\t $(@)/d' /etc/resolv.conf\" " |