From: Michael Tremer Date: Sun, 16 Sep 2018 09:26:22 +0000 (+0200) Subject: pppoe-server: Run with absolute path X-Git-Tag: 010~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4abb642d00db3fbd08f2aa80eeec8c215923c4c;p=network.git pppoe-server: Run with absolute path Because PATH has been changed this script is executing itself recursively Signed-off-by: Michael Tremer --- diff --git a/src/ppp/pppoe-server b/src/ppp/pppoe-server index e0c6b21a..5c46a90d 100644 --- a/src/ppp/pppoe-server +++ b/src/ppp/pppoe-server @@ -91,7 +91,7 @@ case "${action}" in log DEBUG "pppoe-server options: ${pppoe_cmdline}" # Now exec the actual pppoe-server binary. - exec pppoe-server ${pppoe_cmdline} + exec /usr/sbin/pppoe-server ${pppoe_cmdline} error "Could not execute pppoe-server. Exiting." exit ${EXIT_ERROR}