[source] odhcp6c: Pass parameters to user dhcpv6 script
LEDE Commits
lede-commits at lists.infradead.org
Fri Dec 16 09:50:21 PST 2016
dedeckeh pushed a commit to source.git, branch master:
https://git.lede-project.org/7d760284a73675e5675d18ecb2d2130d117aaf4e
commit 7d760284a73675e5675d18ecb2d2130d117aaf4e
Author: Hans Dedecker <dedeckeh at gmail.com>
AuthorDate: Fri Dec 16 18:35:03 2016 +0100
odhcp6c: Pass parameters to user dhcpv6 script
Pass all the parameters like device, dhcpv6 state to user script
Signed-off-by: Hans Dedecker <dedeckeh at gmail.com>
---
package/network/ipv6/odhcp6c/Makefile | 4 ++--
package/network/ipv6/odhcp6c/files/dhcpv6.script | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/network/ipv6/odhcp6c/Makefile b/package/network/ipv6/odhcp6c/Makefile
index 9b50e21..c78198b 100644
--- a/package/network/ipv6/odhcp6c/Makefile
+++ b/package/network/ipv6/odhcp6c/Makefile
@@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=odhcp6c
-PKG_VERSION:=2016-06-30
+PKG_VERSION:=2016-12-16
PKG_RELEASE=$(PKG_SOURCE_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
@@ -16,7 +16,7 @@ PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_URL:=https://github.com/sbyx/odhcp6c.git
PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=7533a6243dc3ac5a747cf6ccbc4d0539dafd3e07
-PKG_MIRROR_MD5SUM:=faaa26d09039c3133626f67a01b07b9922fea105e6566c44e78350fce51fa2b8
+PKG_MIRROR_MD5SUM:=fa9225cd0d9e822b2ff06220b60687710c424e136c078ac1224818fda0ccfb6d
PKG_MAINTAINER:=Steven Barth <steven at midlink.org>
PKG_LICENSE:=GPL-2.0
diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.script b/package/network/ipv6/odhcp6c/files/dhcpv6.script
index 46980cb..1bb5e77 100755
--- a/package/network/ipv6/odhcp6c/files/dhcpv6.script
+++ b/package/network/ipv6/odhcp6c/files/dhcpv6.script
@@ -214,6 +214,6 @@ case "$2" in
esac
# user rules
-[ -f /etc/odhcp6c.user ] && . /etc/odhcp6c.user
+[ -f /etc/odhcp6c.user ] && . /etc/odhcp6c.user "@"
exit 0
More information about the lede-commits
mailing list