From: Daniel Dickinson Date: Mon, 23 May 2011 21:06:12 +0000 (+0000) Subject: [packages] admin: muninlite: Corrected patch for bridge / dash in interface name... X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=d7abd0d4564b32e91245c3bdb0ba2cbd0d51945b;p=openwrt%2Fsvn-archive%2Farchive.git [packages] admin: muninlite: Corrected patch for bridge / dash in interface name patch. It had extraneous +'s from copying from a patch SVN-Revision: 26974 --- diff --git a/admin/muninlite/patches/210-add-bridge-devs.patch b/admin/muninlite/patches/210-add-bridge-devs.patch index 0efe3761c0..c5453d8724 100644 --- a/admin/muninlite/patches/210-add-bridge-devs.patch +++ b/admin/muninlite/patches/210-add-bridge-devs.patch @@ -6,7 +6,7 @@ if [ "$PLUG" = "if_" ]; then - for INTER in $(grep '^ *\(ppp\|eth\|wlan\|ath\|ra\|ipsec\|tap\)\([^:]\)\{1,\}:' /proc/net/dev | cut -f1 -d: | sed 's/ //g'); + for INTER in $(grep '^ *\(ppp\|eth\|wlan\|ath\|ra\|ipsec\|tap\|br-\)\([^:]\)\{1,\}:' /proc/net/dev | cut -f1 -d: | sed 's/ //g -++s/\-/_/g'); ++s/\-/_/g'); do INTERRES=$(echo $INTER | sed 's/\./VLAN/') RES="$RES if_$INTERRES" @@ -16,7 +16,7 @@ elif [ "$PLUG" = "if_err_" ]; then - for INTER in $(grep '^ *\(ppp\|eth\|wlan\|ath\|ra\|ipsec\|tap\)\([^:]\)\{1,\}:' /proc/net/dev | cut -f1 -d: | sed 's/ //g'); + for INTER in $(grep '^ *\(ppp\|eth\|wlan\|ath\|ra\|ipsec\|tap\|br-\)\([^:]\)\{1,\}:' /proc/net/dev | cut -f1 -d: | sed 's/ //g -++s/\-/_/g'); ++s/\-/_/g'); do INTERRES=$(echo $INTER | sed 's/\./VLAN/') RES="$RES if_err_$INTERRES"