summaryrefslogtreecommitdiff
path: root/templates/policy/prefix-list
diff options
context:
space:
mode:
authorMohit Mehta <mohit.mehta@vyatta.com>2008-04-10 04:30:40 +0000
committerMohit Mehta <mohit.mehta@vyatta.com>2008-04-10 04:30:40 +0000
commit17a6da10c0fcb87edcad978daa1f1462515cc011 (patch)
tree0f37bdc69f71f15f846b06d9264352d3cf3556e5 /templates/policy/prefix-list
parentc9b4583f38f4bc7fedef6f05d31ef7ea2020473a (diff)
downloadvyatta-cfg-quagga-17a6da10c0fcb87edcad978daa1f1462515cc011.tar.gz
vyatta-cfg-quagga-17a6da10c0fcb87edcad978daa1f1462515cc011.zip
Fix Bug 3069 Help strings should be standardized
- help strings standardized in vyatta-cfg-quagga
Diffstat (limited to 'templates/policy/prefix-list')
-rw-r--r--templates/policy/prefix-list/node.def2
-rw-r--r--templates/policy/prefix-list/node.tag/description/node.def2
-rw-r--r--templates/policy/prefix-list/node.tag/rule/node.def2
-rw-r--r--templates/policy/prefix-list/node.tag/rule/node.tag/action/node.def2
-rw-r--r--templates/policy/prefix-list/node.tag/rule/node.tag/description/node.def2
-rw-r--r--templates/policy/prefix-list/node.tag/rule/node.tag/ge/node.def2
-rw-r--r--templates/policy/prefix-list/node.tag/rule/node.tag/le/node.def2
-rw-r--r--templates/policy/prefix-list/node.tag/rule/node.tag/prefix/node.def2
8 files changed, 8 insertions, 8 deletions
diff --git a/templates/policy/prefix-list/node.def b/templates/policy/prefix-list/node.def
index 1680a287..64bee643 100644
--- a/templates/policy/prefix-list/node.def
+++ b/templates/policy/prefix-list/node.def
@@ -1,5 +1,5 @@
tag:
type: txt
-help: IP prefix-list filter
+help: Set IP prefix-list filter
comp_help: \1 <txt>\tprefix-list list name
syntax:expression: pattern $VAR(@) "^[-a-zA-Z0-9.]+$" ; "prefix-list name must be alpha-numeric"
diff --git a/templates/policy/prefix-list/node.tag/description/node.def b/templates/policy/prefix-list/node.tag/description/node.def
index 8a4ae9fa..6eb531f1 100644
--- a/templates/policy/prefix-list/node.tag/description/node.def
+++ b/templates/policy/prefix-list/node.tag/description/node.def
@@ -1,2 +1,2 @@
type: txt
-help: set a description for this prefix-list
+help: Set a description for this prefix-list
diff --git a/templates/policy/prefix-list/node.tag/rule/node.def b/templates/policy/prefix-list/node.tag/rule/node.def
index f68dce7e..f876f400 100644
--- a/templates/policy/prefix-list/node.tag/rule/node.def
+++ b/templates/policy/prefix-list/node.tag/rule/node.def
@@ -1,6 +1,6 @@
tag:
type: u32
-help: create a rule for this prefix-list
+help: Set a rule for this prefix-list
comp_help: \1 <1-65535>\tprefix-list rule number
syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 65535; "rule number must be between 1 and 65535"
commit:expression: $VAR(./prefix/) != ""; "policy prefix-list $VAR(../@) rule $VAR(@): You must specify a prefix"
diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/action/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/action/node.def
index 2b641e7c..5aebb0c8 100644
--- a/templates/policy/prefix-list/node.tag/rule/node.tag/action/node.def
+++ b/templates/policy/prefix-list/node.tag/rule/node.tag/action/node.def
@@ -1,5 +1,5 @@
type: txt
-help: action to take on prefixes matching this rule
+help: Set action to take on prefixes matching this rule
comp_help: \1 permit\tpermit matching prefixes
deny\t\tdeny matching prefixes
syntax:expression: $VAR(@) in "permit", "deny"; "action must be permit or deny"
diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/description/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/description/node.def
index 562ab020..8b6dc54a 100644
--- a/templates/policy/prefix-list/node.tag/rule/node.tag/description/node.def
+++ b/templates/policy/prefix-list/node.tag/rule/node.tag/description/node.def
@@ -1,2 +1,2 @@
type: txt
-help: set a description for this rule
+help: Set a description for this rule
diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/ge/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/ge/node.def
index 4187034b..8e102057 100644
--- a/templates/policy/prefix-list/node.tag/rule/node.tag/ge/node.def
+++ b/templates/policy/prefix-list/node.tag/rule/node.tag/ge/node.def
@@ -1,4 +1,4 @@
type: u32
-help: match a netmask greater than or equal to prefix length
+help: Set prefix length to match a netmask greater than or equal to it
comp_help: \1 <0-32>\tnetmask greater than length
syntax:expression: $VAR(@) >= 0 && $VAR(@) <= 32; "ge must be between 0 and 32"
diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/le/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/le/node.def
index 4ebe9128..56296cf4 100644
--- a/templates/policy/prefix-list/node.tag/rule/node.tag/le/node.def
+++ b/templates/policy/prefix-list/node.tag/rule/node.tag/le/node.def
@@ -1,4 +1,4 @@
type: u32
-help: match a netmask less than or equal to prefix length
+help: Set prefix length to match a netmask less than or equal to it
comp_help: \1 <0-32>\tnetmask less than length
syntax:expression: $VAR(@) >= 0 && $VAR(@) <= 32; "le must be between 0 and 32"
diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/prefix/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/prefix/node.def
index 7145e0fd..1581769a 100644
--- a/templates/policy/prefix-list/node.tag/rule/node.tag/prefix/node.def
+++ b/templates/policy/prefix-list/node.tag/rule/node.tag/prefix/node.def
@@ -1,3 +1,3 @@
type: ipv4net
-help: match on a prefix
+help: Set a prefix to match
comp_help: \1 <x.x.x.x/x>\tprefix to match against