From: <abe...@us...> - 2017-03-29 14:12:31
|
Revision: 8243 http://sourceforge.net/p/astlinux/code/8243 Author: abelbeck Date: 2017-03-29 14:12:29 +0000 (Wed, 29 Mar 2017) Log Message: ----------- ddclient, install the get-ipv6-from-ipv4 script from the ddclient-curl repository, allowing to retrieve a neighboring IPv6 address to be published as an AAAA record Modified Paths: -------------- branches/1.0/package/ddclient/ddclient.mk Modified: branches/1.0/package/ddclient/ddclient.mk =================================================================== --- branches/1.0/package/ddclient/ddclient.mk 2017-03-28 22:11:31 UTC (rev 8242) +++ branches/1.0/package/ddclient/ddclient.mk 2017-03-29 14:12:29 UTC (rev 8243) @@ -10,6 +10,7 @@ define DDCLIENT_INSTALL_TARGET_CMDS $(INSTALL) -m 0755 -D package/ddclient/dynamicdns.init $(TARGET_DIR)/etc/init.d/dynamicdns $(INSTALL) -m 0755 -D $(@D)/ddclient $(TARGET_DIR)/usr/sbin/ddclient + $(INSTALL) -m 0755 -D $(@D)/contrib/get-ipv6-from-ipv4/get-ipv6-from-ipv4.pl $(TARGET_DIR)/usr/sbin/get-ipv6-from-ipv4 $(INSTALL) -m 0644 -D package/ddclient/ddclient.conf $(TARGET_DIR)/stat/etc/ddclient.conf ln -sf /tmp/etc/ddclient.conf $(TARGET_DIR)/etc/ddclient.conf endef @@ -17,6 +18,7 @@ define DDCLIENT_UNINSTALL_TARGET_CMDS rm -f $(TARGET_DIR)/etc/init.d/dynamicdns rm -f $(TARGET_DIR)/usr/sbin/ddclient + rm -f $(TARGET_DIR)/usr/sbin/get-ipv6-from-ipv4 rm -f $(TARGET_DIR)/stat/etc/ddclient.conf endef This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |