diff options
author | An-Cheng Huang <ancheng@sydney.vyatta.com> | 2007-10-19 11:26:15 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@sydney.vyatta.com> | 2007-10-19 11:26:15 -0700 |
commit | 07183520f3f4d2f89e526055db418046d0d2450f (patch) | |
tree | 7968eac48a0a57ff97ec4769d999bf31348a2a12 /templates/system/domain-search | |
parent | 66b621cf7759c3448ae8bfe7d7479fb13ea04b65 (diff) | |
download | vyatta-cfg-system-07183520f3f4d2f89e526055db418046d0d2450f.tar.gz vyatta-cfg-system-07183520f3f4d2f89e526055db418046d0d2450f.zip |
move "system" configuration templates/scripts from vyatta-cfg.
Diffstat (limited to 'templates/system/domain-search')
-rw-r--r-- | templates/system/domain-search/domain/node.def | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/system/domain-search/domain/node.def b/templates/system/domain-search/domain/node.def new file mode 100644 index 00000000..d4e6c3c7 --- /dev/null +++ b/templates/system/domain-search/domain/node.def @@ -0,0 +1,12 @@ +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\" " |