diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-20 10:04:41 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-20 10:04:41 -0700 |
commit | d3366af025f4698801c0a51cdd9bbb88fea83ea0 (patch) | |
tree | 1c024f0880aef57c54a465e1f814037560dfecbd /interface-templates/ip/ospf/network | |
parent | 00dce23d0a216a5f2c1a20dd21aec66d954d6963 (diff) | |
download | vyatta-cfg-quagga-d3366af025f4698801c0a51cdd9bbb88fea83ea0.tar.gz vyatta-cfg-quagga-d3366af025f4698801c0a51cdd9bbb88fea83ea0.zip |
Convert interface templates to use val_help:
Diffstat (limited to 'interface-templates/ip/ospf/network')
-rw-r--r-- | interface-templates/ip/ospf/network/node.def | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/interface-templates/ip/ospf/network/node.def b/interface-templates/ip/ospf/network/node.def index 806987be..8922eae1 100644 --- a/interface-templates/ip/ospf/network/node.def +++ b/interface-templates/ip/ospf/network/node.def @@ -1,11 +1,11 @@ type: txt -help: Set network type +help: Network type syntax:expression: $VAR(@) in "broadcast", "non-broadcast", "point-to-multipoint", "point-to-point"; \ "Must be (broadcast|non-broadcast|point-to-multipoint|point-to-point)" update:vtysh -c "configure terminal" -c "interface $IFNAME" -c "ip ospf network $VAR(@)" delete:vtysh -c "configure terminal" -c "interface $IFNAME" -c "no ip ospf network" -comp_help: possible completions: - broadcast Set broadcast network type - non-broadcast Set non-broadcast network type - point-to-multipoint Set point-to-multipoint network type - point-to-point Set point-to-point network type + +val_help: broadcast; Broadcast network type +val_help: non-broadcast; Non-broadcast network type +val_help: point-to-multipoint; Point-to-multipoint network type +val_help: point-to-point; Point-to-point network type |