svn commit: r476551 - in head/dns: . namesilo_ddns
Chris Rees
crees at FreeBSD.org
Mon Aug 6 22:13:47 UTC 2018
Author: crees
Date: Mon Aug 6 22:13:45 2018
New Revision: 476551
URL: https://svnweb.freebsd.org/changeset/ports/476551
Log:
Dynamic DNS record update with NameSilo.
This is a shell script to update Namesilo's DNS record when IP changed.
Set to run this script as cronjob in your system.
WWW: https://github.com/crees/namesilo_ddns
Added:
head/dns/namesilo_ddns/
head/dns/namesilo_ddns/Makefile (contents, props changed)
head/dns/namesilo_ddns/distinfo (contents, props changed)
head/dns/namesilo_ddns/pkg-descr (contents, props changed)
Modified:
head/dns/Makefile
Modified: head/dns/Makefile
==============================================================================
--- head/dns/Makefile Mon Aug 6 21:26:20 2018 (r476550)
+++ head/dns/Makefile Mon Aug 6 22:13:45 2018 (r476551)
@@ -111,6 +111,7 @@
SUBDIR += mdnsd
SUBDIR += mydns
SUBDIR += mydns-ng
+ SUBDIR += namesilo_ddns
SUBDIR += noip
SUBDIR += nsd
SUBDIR += nslint
Added: head/dns/namesilo_ddns/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/dns/namesilo_ddns/Makefile Mon Aug 6 22:13:45 2018 (r476551)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME= namesilo_ddns
+PORTVERSION= 2.0
+DISTVERSIONPREFIX=v
+CATEGORIES= dns net
+
+MAINTAINER= crees at FreeBSD.org
+COMMENT= Updates DNS records with Namesilo for dynamic IP addresses
+
+LICENSE= MIT
+
+RUN_DEPENDS= curl:ftp/curl \
+ xmllint:textproc/libxml2
+
+USE_GITHUB= yes
+GH_ACCOUNT= crees
+
+NO_BUILD= yes
+
+PLIST_FILES= sbin/${PORTNAME} "@sample etc/${PORTNAME}.conf.sample"
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.sh \
+ ${STAGEDIR}${PREFIX}/sbin/${PORTNAME}
+ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.sample \
+ ${STAGEDIR}${PREFIX}/etc/
+
+.include <bsd.port.mk>
Added: head/dns/namesilo_ddns/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/dns/namesilo_ddns/distinfo Mon Aug 6 22:13:45 2018 (r476551)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1533592899
+SHA256 (crees-namesilo_ddns-v2.0_GH0.tar.gz) = c460d272250af293bc7bfe8e665f453b69a9a74317d1c02e62e6f8b6ad25dc2d
+SIZE (crees-namesilo_ddns-v2.0_GH0.tar.gz) = 3878
Added: head/dns/namesilo_ddns/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/dns/namesilo_ddns/pkg-descr Mon Aug 6 22:13:45 2018 (r476551)
@@ -0,0 +1,6 @@
+Dynamic DNS record update with NameSilo.
+
+This is a shell script to update Namesilo's DNS record when IP changed.
+Set to run this script as cronjob in your system.
+
+WWW: https://github.com/crees/namesilo_ddns
More information about the svn-ports-all
mailing list