summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2018-05-30 00:37:58 +0200
committerDaniil Baturin <daniil@baturin.org>2018-05-30 00:37:58 +0200
commita19e0369b537a0ee2e936529af23b50cf739c180 (patch)
tree9b2cc5caa60ebb5a47687ff55171d1c60751844f
parent366f04449ef9d98e31326f194c07f5d7255a59d6 (diff)
downloadvyatta-cfg-quagga-lithium.tar.gz
vyatta-cfg-quagga-lithium.zip
T667: remove the system gateway-address command.lithium
-rw-r--r--debian/vyatta-cfg-quagga.install1
-rw-r--r--templates/system/gateway-address/node.def14
2 files changed, 0 insertions, 15 deletions
diff --git a/debian/vyatta-cfg-quagga.install b/debian/vyatta-cfg-quagga.install
index f6e52ff0..b8b66da3 100644
--- a/debian/vyatta-cfg-quagga.install
+++ b/debian/vyatta-cfg-quagga.install
@@ -4,7 +4,6 @@ opt/vyatta/etc
opt/vyatta/share/perl5
opt/vyatta/share/vyatta-cfg/templates/policy
opt/vyatta/share/vyatta-cfg/templates/protocols
-opt/vyatta/share/vyatta-cfg/templates/system/gateway-address
opt/vyatta/share/vyatta-cfg/templates/interfaces/bonding
opt/vyatta/share/vyatta-cfg/templates/interfaces/bridge
opt/vyatta/share/vyatta-cfg/templates/interfaces/ethernet
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