diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-30 16:52:00 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-07-01 19:06:56 +0200 |
commit | 65fa21f5e79114fa861d99eae154baad35ce2f11 (patch) | |
tree | 9ba87d9e896323d6d05be3a09219b8701a922e6e /data/templates/pppoe/ip-pre-up.script.tmpl | |
parent | f4892241d8248d0e22f971fdc3acd897c7035be9 (diff) | |
download | vyos-1x-65fa21f5e79114fa861d99eae154baad35ce2f11.tar.gz vyos-1x-65fa21f5e79114fa861d99eae154baad35ce2f11.zip |
ifconfig: T2653: move pppoe interface to get_config_dict()
Diffstat (limited to 'data/templates/pppoe/ip-pre-up.script.tmpl')
-rw-r--r-- | data/templates/pppoe/ip-pre-up.script.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/templates/pppoe/ip-pre-up.script.tmpl b/data/templates/pppoe/ip-pre-up.script.tmpl index 6a2d2af94..cf85ed067 100644 --- a/data/templates/pppoe/ip-pre-up.script.tmpl +++ b/data/templates/pppoe/ip-pre-up.script.tmpl @@ -2,17 +2,17 @@ # As PPPoE is an "on demand" interface we need to re-configure it when it # becomes up -if [ "$6" != "{{ intf }}" ]; then +if [ "$6" != "{{ 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 dialer interface $6 for VRF {{ vrf }}" -ip link set dev {{ intf }} master {{ vrf }} +ip link set dev {{ ifname }} master {{ vrf }} {% endif %} |