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