From e18ab114e03c24c5134830270b5c9ac64a02469e Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Wed, 19 Aug 2020 06:16:37 -0600 Subject: [PATCH] ppp: add support for ifupdown2 ppp-physdev for dependency learning --- executor-scripts/linux/ppp | 1 + 1 file changed, 1 insertion(+) diff --git a/executor-scripts/linux/ppp b/executor-scripts/linux/ppp index ea7b085..3ba001b 100755 --- a/executor-scripts/linux/ppp +++ b/executor-scripts/linux/ppp @@ -4,4 +4,5 @@ set -e case "$PHASE" in pre-up) ${MOCK} pon $IF_PPP_PROVIDER ;; post-down) ${MOCK} poff $IF_PPP_PROVIDER ;; +depend) echo "$IF_PPP_PHYSDEV" ;; esac