From ac8a691bf0ff3e98104b1cc76d8f1f50f47ae2eb Mon Sep 17 00:00:00 2001 From: crees Date: Mon, 6 Aug 2018 22:13:45 +0000 Subject: 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 --- dns/namesilo_ddns/Makefile | 29 +++++++++++++++++++++++++++++ dns/namesilo_ddns/distinfo | 3 +++ dns/namesilo_ddns/pkg-descr | 6 ++++++ 3 files changed, 38 insertions(+) create mode 100644 dns/namesilo_ddns/Makefile create mode 100644 dns/namesilo_ddns/distinfo create mode 100644 dns/namesilo_ddns/pkg-descr (limited to 'dns/namesilo_ddns') diff --git a/dns/namesilo_ddns/Makefile b/dns/namesilo_ddns/Makefile new file mode 100644 index 000000000000..4a855cd6f90c --- /dev/null +++ b/dns/namesilo_ddns/Makefile @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= namesilo_ddns +PORTVERSION= 2.0 +DISTVERSIONPREFIX=v +CATEGORIES= dns net + +MAINTAINER= crees@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 diff --git a/dns/namesilo_ddns/distinfo b/dns/namesilo_ddns/distinfo new file mode 100644 index 000000000000..41c3fcb93d66 --- /dev/null +++ b/dns/namesilo_ddns/distinfo @@ -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 diff --git a/dns/namesilo_ddns/pkg-descr b/dns/namesilo_ddns/pkg-descr new file mode 100644 index 000000000000..c34e230547ad --- /dev/null +++ b/dns/namesilo_ddns/pkg-descr @@ -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 -- cgit