diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-05-01 20:27:07 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-05-01 20:27:07 +0200 |
commit | 644a0fe475b137185ada36a6b7a0ca43259f1d0a (patch) | |
tree | 06a8b3b0987d4584f59479a43e9e9cd999a09100 /data/templates/pppoe/ip-pre-up.script.tmpl | |
parent | 4400d11709a86fddf63a98cadc4241776afa3e35 (diff) | |
download | vyos-1x-644a0fe475b137185ada36a6b7a0ca43259f1d0a.tar.gz vyos-1x-644a0fe475b137185ada36a6b7a0ca43259f1d0a.zip |
pppoe: T4353: fix Jinja2 linting errors
Diffstat (limited to 'data/templates/pppoe/ip-pre-up.script.tmpl')
-rw-r--r-- | data/templates/pppoe/ip-pre-up.script.tmpl | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/data/templates/pppoe/ip-pre-up.script.tmpl b/data/templates/pppoe/ip-pre-up.script.tmpl deleted file mode 100644 index a54e4e9bd..000000000 --- a/data/templates/pppoe/ip-pre-up.script.tmpl +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -# As PPPoE is an "on demand" interface we need to re-configure it when it -# becomes up -if [ "$6" != "{{ 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 dialer interface $6 for VRF {{ vrf }}" -ip link set dev {{ ifname }} master {{ vrf }} -{% endif %} |