diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2008-04-08 11:34:01 -0700 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2008-04-08 11:34:01 -0700 |
commit | 3c78e0e972134e39cebe593562b734a438aa18cc (patch) | |
tree | c53d67e940f6056ddb698919879454a8e7d2f3b5 /templates/protocols/ospf | |
parent | 9f83699da352d02791be527ed9148ad032afd99e (diff) | |
download | vyatta-cfg-quagga-3c78e0e972134e39cebe593562b734a438aa18cc.tar.gz vyatta-cfg-quagga-3c78e0e972134e39cebe593562b734a438aa18cc.zip |
Fix 3132: "set protocols ospf refresh timers <>" then commit failed
Diffstat (limited to 'templates/protocols/ospf')
-rw-r--r-- | templates/protocols/ospf/refresh/timers/node.def | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/protocols/ospf/refresh/timers/node.def b/templates/protocols/ospf/refresh/timers/node.def index 83334d11..91d285cd 100644 --- a/templates/protocols/ospf/refresh/timers/node.def +++ b/templates/protocols/ospf/refresh/timers/node.def @@ -1,11 +1,11 @@ type: u32 help: Set refresh timer syntax:expression: $VAR(@) >= 10 && $VAR(@) <= 1800; "must be between 10-1800" -update:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" / - -c \"router ospf\" \ - -c \"no refresh timer\" -c \"refresh timer $VAR(@)\"; " -delete:expression: "${vyatta_sbindir}/vyatta-vtysh.pl -c \"configure terminal\" / - -c \"router ospf\" \ - -c \"no refresh timer $VAR(@)\"; " +update: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \ + -c "router ospf" \ + -c "no refresh timer" -c "refresh timer $VAR(@)"; +delete: ${vyatta_sbindir}/vyatta-vtysh.pl -c "configure terminal" \ + -c "router ospf" \ + -c "no refresh timer $VAR(@)"; comp_help: possible completions: - <10-1800> Timer value in seconds + <10-1800> Timer value in seconds |