From 9c80b9a30517576267634d202fbe126eca749c12 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Fri, 28 May 2021 19:23:03 +0200 Subject: vti: T1579: migrate to vyos-1x --- templates/interfaces/vti/node.def | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 templates/interfaces/vti/node.def (limited to 'templates/interfaces/vti/node.def') diff --git a/templates/interfaces/vti/node.def b/templates/interfaces/vti/node.def deleted file mode 100644 index 5e8adb07..00000000 --- a/templates/interfaces/vti/node.def +++ /dev/null @@ -1,35 +0,0 @@ -tag: -priority: 381 -type: txt -help: Virtual Tunnel interface -val_help: ; Virtual Tunnel interface name -syntax:expression: pattern $VAR(@) "^vti[0-9]+$" \ - ; "vti must be (vti0-vti999..)" - -begin: -if [ "${COMMIT_ACTION}" == DELETE ]; then - # check if there is still a reference - `${vyatta_sbindir}/vyatta-vti-config.pl --checkref --intf=$VAR(@)` - if [ $? -gt 0 ] ; then - echo "Interface $VAR(@) is referenced in vpn configuration." - exit -1 - fi -fi -if [ "${COMMIT_ACTION}" == SET ]; then - `${vyatta_sbindir}/vyatta-vti-config.pl --checkref --intf=$VAR(@)` - if [ $? -eq 0 ]; then - echo "Warning: Interface $VAR(@) is not referenced in vpn configuration." - fi -fi - -delete: - if [ -d /sys/class/net/$VAR(@) ] ; then - sudo ip link set $VAR(@) down - sudo ip tunnel del $VAR(@) mode ipip - fi - -end: -if [ "${COMMIT_ACTION}" == DELETE ]; then - /opt/vyatta/sbin/vyatta-tunnel-cleanup $VAR(@) -fi - -- cgit v1.2.3