diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2007-11-07 14:37:39 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2007-11-07 14:37:39 -0800 |
commit | 0d6807dac3d72fdfb98f42cac17dc1431a7fbdff (patch) | |
tree | c4f0da018637da79d56b850d470b94efc7deeeec | |
parent | 23e89e2b78d9dcc29cad21cbe7e15e75f01f7061 (diff) | |
download | vyatta-cfg-quagga-0d6807dac3d72fdfb98f42cac17dc1431a7fbdff.tar.gz vyatta-cfg-quagga-0d6807dac3d72fdfb98f42cac17dc1431a7fbdff.zip |
use default if host-name is deleted
-rw-r--r-- | templates/system/host-name/node.def | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/system/host-name/node.def b/templates/system/host-name/node.def index 33ba25e1..aeed3986 100644 --- a/templates/system/host-name/node.def +++ b/templates/system/host-name/node.def @@ -11,8 +11,12 @@ 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: "sudo sh -c \"echo > /etc/hostname.conf && hostname '' && \ +delete: "sudo sh -c \"echo > /etc/hostname.conf && hostname 'vyatta' && \ touch /etc/hosts && \ sed -i '/localhost.*#vyatta entry/d' /etc/hosts && \ +echo \\\"127.0.0.1\t localhost vyatta\t #vyatta entry\\\" >> /etc/hosts && \ +if [ x$(../domain-name/@) != x ]; then \ +echo \\\"127.0.0.1\t localhost vyatta.$(../domain-name/@)\t #vyatta entry\\\" \ +>> /etc/hosts; fi && \ if [ -f /etc/ntp/ntp.conf ] && grep -q 'server' /etc/ntp/ntp.conf; then \ /opt/vyatta/sbin/ntpd.init restart; fi\" " |