From: nbd Date: Sun, 10 Jun 2012 12:12:10 +0000 (+0000) Subject: ppp: block restart of interfaces if pppd refused the command line options X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=70f4fb23cda0b83e651be955c7ae247adece5d3d ppp: block restart of interfaces if pppd refused the command line options git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32160 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/ppp/files/ppp.sh b/package/ppp/files/ppp.sh index 7d475a985b..98099dba54 100755 --- a/package/ppp/files/ppp.sh +++ b/package/ppp/files/ppp.sh @@ -72,6 +72,10 @@ ppp_generic_teardown() { proto_notify_error "$interface" AUTH_FAILED proto_block_restart "$interface" ;; + 2) + proto_notify_error "$interface" INVALID_OPTIONS + proto_block_restart "$interface" + ;; esac proto_kill_command "$interface" }