diff options
Diffstat (limited to 'templates/system/static-host-mapping/host-name')
-rw-r--r-- | templates/system/static-host-mapping/host-name/node.def | 8 | ||||
-rw-r--r-- | templates/system/static-host-mapping/host-name/node.tag/inet/node.def | 9 |
2 files changed, 13 insertions, 4 deletions
diff --git a/templates/system/static-host-mapping/host-name/node.def b/templates/system/static-host-mapping/host-name/node.def index bd9cfab1..edd286c8 100644 --- a/templates/system/static-host-mapping/host-name/node.def +++ b/templates/system/static-host-mapping/host-name/node.def @@ -1,8 +1,12 @@ tag: type: txt -help: Set to map DNS names to system interfaces -syntax:expression: pattern $VAR(@) "^[-a-zA-Z0-9.]+$" ; "invalid host name $VAR(@)" +help: Set to map host name to address + +syntax:expression: pattern $VAR(@) "^[[:alnum:]][-.[:alnum:]]*[[:alnum:]]$" + ; "invalid host name $VAR(@)" + commit:expression: $VAR(./inet) != ""; "IP address for the static mapping must be set" + end: sudo sh -c " touch /etc/hosts sed -i '/ $VAR(@) .*#vyatta entry/d' /etc/hosts diff --git a/templates/system/static-host-mapping/host-name/node.tag/inet/node.def b/templates/system/static-host-mapping/host-name/node.tag/inet/node.def index af274398..63e611a8 100644 --- a/templates/system/static-host-mapping/host-name/node.tag/inet/node.def +++ b/templates/system/static-host-mapping/host-name/node.tag/inet/node.def @@ -1,2 +1,7 @@ -type: ipv4 -help: Set Internet address [REQUIRED] +type: txt +help: Set address [REQUIRED] +syntax:expression: exec "/opt/vyatta/sbin/check-ipv4-ipv6.pl $VAR(@)" + +comp_help: Possible completions: + <ipv4> Set IPv4 address + <ipv6> Set IPv6 address |