From: cshore 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://207.154.207.93/?a=commitdiff_plain;h=cfa9fe3a6a9775d5c9e17ebad5762924680fe2e6;p=packages.git [packages] admin: muninlite: Corrected patch for bridge / dash in interface name patch. It had extraneous +'s from copying from a patch git-svn-id: svn://svn.openwrt.org/openwrt/packages@26974 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/admin/muninlite/patches/210-add-bridge-devs.patch b/admin/muninlite/patches/210-add-bridge-devs.patch index 0efe3761c..c5453d872 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"