summaryrefslogtreecommitdiff
path: root/templates/system/host-name/node.def
blob: aeed3986c4d8e83e74f66e31b12e9dacb89d7acf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
type: txt
help: "Configure system host name"
default: "vyatta"
syntax: pattern $(@) "^[-a-zA-Z0-9.]+$" ; "invalid host name $(@)"
# do we need to add ntpd restart here?
update: "sudo 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: "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\" "