summaryrefslogtreecommitdiff
path: root/templates/system/static-host-mapping/host-name/node.def
blob: 189025e3fdf917224d5f627f90a99d0269eb973d (plain)
1
2
3
4
5
6
7
8
9
10
11
tag:
type: txt
help: Set to map DNS names to system interfaces
syntax:expression: pattern $VAR(@) "^[-a-zA-Z0-9.]+$" ; "invalid host name $VAR(@)"
commit:expression: $VAR(./inet) != ""; "IP address for the static mapping must be set"
end:expression: "sudo sh -c \"\
  touch /etc/hosts; \
  sed -i '/ $VAR(@) .*#vyatta entry/d' /etc/hosts; \
  if [ -z \"$VAR(./inet/@)\" ]; then exit 0; fi; \
  declare -a aliases=( $VAR(alias/@@) ); \
  echo \\\"$VAR(inet/@)\t $VAR(@) \\${aliases[*]} \t #vyatta entry\\\" \               >> /etc/hosts\" "