diff options
Diffstat (limited to 'templates/system/static-host-mapping')
4 files changed, 11 insertions, 11 deletions
diff --git a/templates/system/static-host-mapping/host-name/node.def b/templates/system/static-host-mapping/host-name/node.def index 275aa867..99f66fb7 100644 --- a/templates/system/static-host-mapping/host-name/node.def +++ b/templates/system/static-host-mapping/host-name/node.def @@ -1,11 +1,11 @@ tag: type: txt -help: "Map DNS names to system interfaces" -syntax: pattern $(@) "^[-a-zA-Z0-9.]+$" ; "invalid host name $(@)" -commit: $(./inet) != ""; "IP address for the static mapping must be set" -end: "sudo sh -c \"\ +help: 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 '/ $(@) .*#vyatta entry/d' /etc/hosts; \ - if [ -z \"$(./inet/@)\" ]; then exit 0; fi; \ - declare -a aliases=( $(alias/@@) ); \ - echo \\\"$(inet/@)\t $(@) \\\\\${aliases[*]} \t #vyatta entry\\\" \ >> /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\" " diff --git a/templates/system/static-host-mapping/host-name/node.tag/alias/node.def b/templates/system/static-host-mapping/host-name/node.tag/alias/node.def index e9f1de7c..2f340fc7 100644 --- a/templates/system/static-host-mapping/host-name/node.tag/alias/node.def +++ b/templates/system/static-host-mapping/host-name/node.tag/alias/node.def @@ -1,3 +1,3 @@ multi: type: txt -help: "Alias for this address" +help: Alias for this address 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 4a069d9e..727c0411 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,2 @@ type: ipv4 -help: "Internet address" +help: Internet address diff --git a/templates/system/static-host-mapping/node.def b/templates/system/static-host-mapping/node.def index 736413f6..e72527ae 100644 --- a/templates/system/static-host-mapping/node.def +++ b/templates/system/static-host-mapping/node.def @@ -1 +1 @@ -help: "Map DNS names to system interfaces" +help: Map DNS names to system interfaces |