From dd26e54359c33dafdee27bd5e430ab0193f2f0a1 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 4 Sep 2010 16:09:49 +0000 Subject: [PATCH 1/1] [package] 6in4: replace sed match with variable substitution, change pattern from a-z to a-f (hex only) SVN-Revision: 22893 --- package/6in4/Makefile | 2 +- package/6in4/files/6in4.hotplug | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/6in4/Makefile b/package/6in4/Makefile index c56b9c57ce..b9fa220df7 100644 --- a/package/6in4/Makefile +++ b/package/6in4/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=6in4 PKG_VERSION:=5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 include $(INCLUDE_DIR)/package.mk diff --git a/package/6in4/files/6in4.hotplug b/package/6in4/files/6in4.hotplug index b695b527ed..790edc0e15 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" -- 2.30.2