diff options
Diffstat (limited to 'templates/system/host-name/node.def')
-rw-r--r-- | templates/system/host-name/node.def | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/templates/system/host-name/node.def b/templates/system/host-name/node.def deleted file mode 100644 index fc7c91b..0000000 --- a/templates/system/host-name/node.def +++ /dev/null @@ -1,24 +0,0 @@ -type: txt -help: "Configure system host name" -default: "vyatta" -syntax: pattern $(@) "^[-a-zA-Z0-9.]+$" ; "invalid host name $(@)" -create: "sh -c \"hostname '$(@)' && \ -touch /etc/hosts && \ -sed -i '/localhost/d' /etc/hosts && \ -echo \\\"127.0.0.1\t localhost $(@)\t #vyatta entry\\\" >> /etc/hosts && \ -if [ x$(../domain-name/@) != x ]; then \ -echo \\\"127.0.0.1\t localhost $(@).$(../domain-name/@)\t #vyatta entry\\\" \>> /etc/hosts; fi\" " -# do we need to add ntpd restart here? -update: "sh -c \"hostname '$(@)' && \ -touch /etc/hosts && \ -sed -i '/localhost/d' /etc/hosts && \ -echo \\\"127.0.0.1\t localhost $(@)\t #vyatta entry\\\" >> /etc/hosts && \ -if [ x$(../domain-name/@) != x ]; then \ -echo \\\"127.0.0.1\t localhost $(@).$(../domain-name/@)\t #vyatta entry\\\" \ ->> /etc/hosts; fi\" " -# do we need to add ntpd restart here? -delete: "sh -c \"echo > /etc/hostname.conf && hostname '' && \ -touch /etc/hosts && \ -sed -i '/localhost.*#vyatta entry/d' /etc/hosts && \ -if [ -f /etc/ntp/ntp.conf ] && grep -q 'server' /etc/ntp/ntp.conf; then \ -/opt/vyatta/sbin/ntpd.init restart; fi\" " |