summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Southworth <john.southworth@vyatta.com>2013-05-31 15:47:37 -0700
committerJohn Southworth <john.southworth@vyatta.com>2013-05-31 15:47:37 -0700
commit439e3e574fe8397ca6d9f816cdb6add31fb12cdc (patch)
tree0d421f8527385f2f757af6200768be579e502cff
parent206a536280cf328501f0bc2be4536f9adc8d8c2e (diff)
downloadvyatta-cfg-quagga-439e3e574fe8397ca6d9f816cdb6add31fb12cdc.tar.gz
vyatta-cfg-quagga-439e3e574fe8397ca6d9f816cdb6add31fb12cdc.zip
Remove redundant 'system gateway-address'
-rw-r--r--templates/system/gateway-address/node.def14
1 files changed, 0 insertions, 14 deletions
diff --git a/templates/system/gateway-address/node.def b/templates/system/gateway-address/node.def
deleted file mode 100644
index 70419e26..00000000
--- a/templates/system/gateway-address/node.def
+++ /dev/null
@@ -1,14 +0,0 @@
-priority: 400
-type: ipv4
-help: Default gateway
-create: vtysh -c "configure terminal" -c "ip route 0.0.0.0/0 $VAR(@)"
-update: oldgw=`/opt/vyatta/sbin/vyatta-cli-expand-var.pl \\$VAR\(/system/gateway-address/@\)`
- if [ -n "$oldgw" ]; then
- vtysh --noerror -c "configure terminal" \
- -c "no ip route 0.0.0.0/0 $oldgw"
- fi
- 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 vtysh -c "configure terminal" -c "no ip route 0.0.0.0/0 $VAR(@)"
- fi
-end: ${vyatta_sbindir}/vyatta-gateway-static_route-check.pl warn