summaryrefslogtreecommitdiff
path: root/data/templates/wwan/ip-pre-up.script.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-06-12 13:17:13 +0200
committerChristian Poessinger <christian@poessinger.com>2021-06-13 09:20:08 +0000
commit8a98235b5d7f19a0f90cbd536097b3aef0ea29d7 (patch)
tree1d68ac9e72e0026d56df0a9f2ea51203afcae32e /data/templates/wwan/ip-pre-up.script.tmpl
parent5bdae44e36f61d29a9f6a2a012e788e9c0311407 (diff)
downloadvyos-1x-8a98235b5d7f19a0f90cbd536097b3aef0ea29d7.tar.gz
vyos-1x-8a98235b5d7f19a0f90cbd536097b3aef0ea29d7.zip
wwan: T3620: rename "wirelessmodem wlm" interfaces to new wwan interface tree
(cherry picked from commit c2a1c071e7d0a9ca754d7f5016eed7db188b3d1a)
Diffstat (limited to 'data/templates/wwan/ip-pre-up.script.tmpl')
-rw-r--r--data/templates/wwan/ip-pre-up.script.tmpl23
1 files changed, 0 insertions, 23 deletions
diff --git a/data/templates/wwan/ip-pre-up.script.tmpl b/data/templates/wwan/ip-pre-up.script.tmpl
deleted file mode 100644
index 199150947..000000000
--- a/data/templates/wwan/ip-pre-up.script.tmpl
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-# As WWAN is an "on demand" interface we need to re-configure it when it
-# becomes 'up'
-
-ipparam=$6
-
-# device name and metric are received using ipparam
-device=`echo "$ipparam"|awk '{ print $1 }'`
-
-if [ "$device" != "{{ ifname }}" ]; then
- exit
-fi
-
-# add some info to syslog
-DIALER_PID=$(cat /var/run/{{ ifname }}.pid)
-logger -t pppd[$DIALER_PID] "executing $0"
-
-echo "{{ description }}" > /sys/class/net/{{ ifname }}/ifalias
-
-{% if vrf %}
-logger -t pppd[$DIALER_PID] "configuring interface {{ ifname }} for VRF {{ vrf }}"
-ip link set dev {{ ifname }} master {{ vrf }}
-{% endif %}