[package] ppp: honour option auto in atm hotplug
authorJo-Philipp Wich <jow@openwrt.org>
Tue, 19 Oct 2010 07:01:38 +0000 (07:01 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Tue, 19 Oct 2010 07:01:38 +0000 (07:01 +0000)
SVN-Revision: 23531

package/ppp/files/etc/hotplug.d/atm/20-atm-modem

index 45ef54239c9b0c9f60c5851eab63a9f4f9429856..4fd9b9c66224662586401e8d39f4ca6dbc085e48 100644 (file)
@@ -10,10 +10,13 @@ if [ "$ACTION" = "add" ]; then
                local up
                config_get_bool up "$ifc" up 0
 
+               local auto
+               config_get_bool auto "$ifc" auto 1
+
                local proto
                config_get proto "$ifc" proto
 
-               if [ "$proto" = "pppoa" ] && [ "$up" != 1 ]; then
+               if [ "$proto" = "pppoa" ] && [ "$up" != 1 ] && [ "$auto" = 1 ]; then
                        found=1
                        ( sleep 1; ifup "$ifc" ) &
                fi