summaryrefslogtreecommitdiff
path: root/templates/system
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2010-03-05 15:30:03 -0800
committerStephen Hemminger <stephen.hemminger@vyatta.com>2010-03-05 15:30:03 -0800
commit7e018e496706667c3c0d9cc074d479b3fc445bd9 (patch)
tree94635b213133edb6c3724d0bf7469b5588db386d /templates/system
parent25d3ee90522b1056d9a25735c3e0c89e7b1eeae1 (diff)
downloadvyatta-cfg-quagga-7e018e496706667c3c0d9cc074d479b3fc445bd9.tar.gz
vyatta-cfg-quagga-7e018e496706667c3c0d9cc074d479b3fc445bd9.zip
Get rid of vyatta-vtysh
For SELinux policy, changing vyatta-quagga to use standard path values. This means not having to change policies.
Diffstat (limited to 'templates/system')
-rw-r--r--templates/system/gateway-address/node.def8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/system/gateway-address/node.def b/templates/system/gateway-address/node.def
index 6c2c61d2..c8772881 100644
--- a/templates/system/gateway-address/node.def
+++ b/templates/system/gateway-address/node.def
@@ -1,13 +1,13 @@
priority: 400
type: ipv4
help: Set default gateway
-create: vyatta-vtysh -c "configure terminal" -c "ip route 0.0.0.0/0 $VAR(@)"
+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
- vyatta-vtysh --noerror -c "configure terminal" \
+ vtysh --noerror -c "configure terminal" \
-c "no ip route 0.0.0.0/0 $oldgw"
fi
- vyatta-vtysh -c "configure terminal" -c "ip route 0.0.0.0/0 $VAR(@)"
+ 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(@)"
+ then vtysh -c "configure terminal" -c "no ip route 0.0.0.0/0 $VAR(@)"
fi