summaryrefslogtreecommitdiff
path: root/package/6in4/files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-09-04 16:09:49 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-09-04 16:09:49 +0000
commit52dcaeb65d0959543104fd470e167f18a8a97fc9 (patch)
tree42088c7ac65bb9af772e13a9522d7068060f55b6 /package/6in4/files
parent6edf2c577b22c3030acdeda3f9987846374f0193 (diff)
downloadmtk-20170518-52dcaeb65d0959543104fd470e167f18a8a97fc9.zip
mtk-20170518-52dcaeb65d0959543104fd470e167f18a8a97fc9.tar.gz
mtk-20170518-52dcaeb65d0959543104fd470e167f18a8a97fc9.tar.bz2
6in4: replace sed match with variable substitution, change pattern from a-z to a-f (hex only)
SVN-Revision: 22893
Diffstat (limited to 'package/6in4/files')
-rw-r--r--package/6in4/files/6in4.hotplug2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/6in4/files/6in4.hotplug b/package/6in4/files/6in4.hotplug
index b695b52..790edc0 100644
--- a/package/6in4/files/6in4.hotplug
+++ b/package/6in4/files/6in4.hotplug
@@ -32,7 +32,7 @@ if [ "$ACTION" = ifup ]; then
config_get password "$cfg" password
[ -n "$tunnelid" ] && [ -n "$username" ] && [ -n "$password" ] && {
- [ "${#password}" != 32 ] || [ -n "$(echo "$password" | sed 's/[a-z0-9]//g')" ] && {
+ [ "${#password}" == 32 -a -z "${password//[a-f0-9]/}" ] && {
password="$(echo -n "$password" | md5sum)"; password="${password%% *}"
}
uci_set_state network "$cfg" ipaddr "$wanip"