From 07183520f3f4d2f89e526055db418046d0d2450f Mon Sep 17 00:00:00 2001 From: An-Cheng Huang Date: Fri, 19 Oct 2007 11:26:15 -0700 Subject: move "system" configuration templates/scripts from vyatta-cfg. --- templates/system/domain-name/node.def | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 templates/system/domain-name/node.def (limited to 'templates/system/domain-name/node.def') diff --git a/templates/system/domain-name/node.def b/templates/system/domain-name/node.def new file mode 100644 index 00000000..8f9d4579 --- /dev/null +++ b/templates/system/domain-name/node.def @@ -0,0 +1,15 @@ +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\" " -- cgit v1.2.3