brcm-2.4/brcm47xx: fix typos and indenting in the preinit interface script (thx,...
[openwrt.git] / target / linux / brcm-2.4 / base-files / lib / preinit / 15_set_preinit_interface_brcm
index 5e8dc9f..0f6c192 100644 (file)
@@ -1,11 +1,11 @@
-. /etc/functions.sh
+#!/bin/sh
 
 port_net_echo() {
-    [ -n "$pi_ifname" ] && grep "$pi_ifname" /proc/net/dev >/dev/null ] {
-        if [ "$pi_preinit_net_messages" = "y" ] || [ "$pi_failsafe_net_message"  = "true"] && [ "$pi_preinit_no_failsafe_netmsg" != "y" ]; then
-                netmsg $pi_broadcast "$1"
-        }
-    }
+       [ -n "$pi_ifname" ] && grep "$pi_ifname" /proc/net/dev >/dev/null && {
+               if [ "$pi_preinit_net_messages" = "y" ] || [ "$pi_failsafe_net_message" = "true" ] && [ "$pi_preinit_no_failsafe_netmsg" != "y" ]; then 
+                       netmsg $pi_broadcast "$1"
+               }
+       }
 }
 
 preinit_ip_deconfig() {
@@ -13,8 +13,8 @@ preinit_ip_deconfig() {
                ifconfig $ifname 0.0.0.0 down
        else
                grep "$pi_ifname" /proc/net/dev >/dev/null && {
-               ifconfig $pi_ifname 0.0.0.0 down
-           }
+                       ifconfig $pi_ifname 0.0.0.0 down
+               }
        fi
 }
 
This page took 0.025677 seconds and 4 git commands to generate.