diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-27 22:28:59 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-27 22:28:59 +0200 |
commit | 50068c7bbdb409a05684898481a7b4fbfcbb106f (patch) | |
tree | 9ee17c12b77fba4670c183c5052ee943674a0395 /data/templates/wwan/ip-pre-up.script.tmpl | |
parent | b8004cac6152b35427e6c391d40ddbacb9906950 (diff) | |
download | vyos-1x-50068c7bbdb409a05684898481a7b4fbfcbb106f.tar.gz vyos-1x-50068c7bbdb409a05684898481a7b4fbfcbb106f.zip |
ifconfig: T2653: move wirelessmodem (WWAN) interface to get_config_dict()
Diffstat (limited to 'data/templates/wwan/ip-pre-up.script.tmpl')
-rw-r--r-- | data/templates/wwan/ip-pre-up.script.tmpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/data/templates/wwan/ip-pre-up.script.tmpl b/data/templates/wwan/ip-pre-up.script.tmpl index 7a17a1c71..efc065bad 100644 --- a/data/templates/wwan/ip-pre-up.script.tmpl +++ b/data/templates/wwan/ip-pre-up.script.tmpl @@ -7,17 +7,17 @@ ipparam=$6 # device name and metric are received using ipparam device=`echo "$ipparam"|awk '{ print $1 }'` -if [ "$device" != "{{ intf }}" ]; then +if [ "$device" != "{{ ifname }}" ]; then exit fi # add some info to syslog -DIALER_PID=$(cat /var/run/{{ intf }}.pid) +DIALER_PID=$(cat /var/run/{{ ifname }}.pid) logger -t pppd[$DIALER_PID] "executing $0" -echo "{{ description }}" > /sys/class/net/{{ intf }}/ifalias +echo "{{ description }}" > /sys/class/net/{{ ifname }}/ifalias {% if vrf -%} -logger -t pppd[$DIALER_PID] "configuring interface {{ intf }} for VRF {{ vrf }}" -ip link set dev {{ intf }} master {{ vrf }} +logger -t pppd[$DIALER_PID] "configuring interface {{ ifname }} for VRF {{ vrf }}" +ip link set dev {{ ifname }} master {{ vrf }} {% endif %} |