diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-07 09:00:14 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-07 09:00:14 -0700 |
commit | f40de1d511ebe67b647f17fc1d56c5f4da5e3d76 (patch) | |
tree | bc7d2e17e7f220bcbc1b07cd1c24acb1feb3cf85 /templates/system | |
parent | 34f2b319744472a21a174b100e7fcffcf451a984 (diff) | |
download | vyatta-cfg-quagga-f40de1d511ebe67b647f17fc1d56c5f4da5e3d76.tar.gz vyatta-cfg-quagga-f40de1d511ebe67b647f17fc1d56c5f4da5e3d76.zip |
Convert template to non-expression create/update/delete
New syntax is cleaner
Diffstat (limited to 'templates/system')
-rw-r--r-- | templates/system/gateway-address/node.def | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/templates/system/gateway-address/node.def b/templates/system/gateway-address/node.def index 3a42a45e..f41a5212 100644 --- a/templates/system/gateway-address/node.def +++ b/templates/system/gateway-address/node.def @@ -1,9 +1,11 @@ type: ipv4 help: Set default gateway -create:expression: "vyatta-vtysh -c \"configure terminal\" -c \"ip route 0.0.0.0/0 $VAR(@)\" " -update:expression: "oldgw=`/opt/vyatta/sbin/vyatta-cli-expand-var.pl '$(/system/gateway-address/@)' ` && \ - vyatta-vtysh --noerror -c \"configure terminal\" -c \"no ip route 0.0.0.0/0 $oldgw \" && \ - vyatta-vtysh -c \"configure terminal\" -c \"ip route 0.0.0.0/0 $VAR(@)\" " -delete:expression: "if ${vyatta_sbindir}/vyatta-gateway-static_route-check.pl \"$VAR(@)\"; then \ - vyatta-vtysh -c \"configure terminal\" -c \"no ip route 0.0.0.0/0 $VAR(@)\"; fi" - +create: vyatta-vtysh -c "configure terminal" -c "ip route 0.0.0.0/0 $VAR(@)" +update: oldgw=`/opt/vyatta/sbin/vyatta-cli-expand-var.pl '$(/system/gateway-address/@)'` + if [ -n "$oldgw" ]; then + vyatta-vtysh --noerror -c "configure terminal" \ + -c "no ip route 0.0.0.0/0 $oldgw" + vyatta-vtysh -c "configure terminal" -c "ip route 0.0.0.0/0 $VAR(@)" +delete: if ${vyatta_sbindir}/vyatta-gateway-static_route-check.pl "$VAR(@)" + then vyatta-vtysh -c "configure terminal" -c "no ip route 0.0.0.0/0 $VAR(@)" + fi |