summaryrefslogtreecommitdiff
path: root/templates/system/domain-name/node.def
diff options
context:
space:
mode:
authorAn-Cheng Huang <ancheng@vyatta.com>2007-10-19 11:25:38 -0700
committerAn-Cheng Huang <ancheng@vyatta.com>2007-10-19 11:25:38 -0700
commit724e9418e3f6acf81fcc29172de6c1f5e3335fa7 (patch)
tree384b0be3e93a8de0b0d890f5fee18d04590ea01c /templates/system/domain-name/node.def
parent20c7a06a9dd38fb705a245cb755a351241113461 (diff)
downloadvyatta-cfg-724e9418e3f6acf81fcc29172de6c1f5e3335fa7.tar.gz
vyatta-cfg-724e9418e3f6acf81fcc29172de6c1f5e3335fa7.zip
move "system" configuration templates/scripts to vyatta-cfg-system.
Diffstat (limited to 'templates/system/domain-name/node.def')
-rw-r--r--templates/system/domain-name/node.def15
1 files changed, 0 insertions, 15 deletions
diff --git a/templates/system/domain-name/node.def b/templates/system/domain-name/node.def
deleted file mode 100644
index 8f9d457..0000000
--- a/templates/system/domain-name/node.def
+++ /dev/null
@@ -1,15 +0,0 @@
-type: txt
-help: "Configure system domain name"
-syntax: pattern $(@) "^[-a-zA-Z0-9.]{0,63}$" ; "invalid domain name $(@)"
-create: "sh -c \"if [ x$(@) == x ]; then exit 0; fi && \
-touch /etc/resolv.conf && \
-sed -i '/domain/d' /etc/resolv.conf && \
-echo \\\"domain\t $(@)\\\" >> /etc/resolv.conf\" "
-# also add localhost line into /etc/hosts (see host-name template)?
-update: "sh -c \"if [ x$(@) == x ]; then exit 0; fi && \
-touch /etc/resolv.conf && \
-sed -i '/domain/d' /etc/resolv.conf && \
-echo \\\"domain\t $(@)\\\" >> /etc/resolv.conf\" "
-# also update localhost line in /etc/hosts (see host-name template)?
-delete: "sh -c \"touch /etc/resolv.conf && \
-sed -i '/domain\\\\t $(@)/d' /etc/resolv.conf\" "