diff options
author | SADA Kenji <sada@FreeBSD.org> | 2002-05-23 08:25:57 +0000 |
---|---|---|
committer | SADA Kenji <sada@FreeBSD.org> | 2002-05-23 08:25:57 +0000 |
commit | 7ec459fa338ac28b9bb852006562378d13ce615b (patch) | |
tree | b92e26e708fc9845254675b211e4068a512093d7 /dns/dhisd | |
parent | 29163975859621cc57d15e468a1929a7e238a0d6 (diff) | |
download | ports-7ec459fa338ac28b9bb852006562378d13ce615b.tar.gz ports-7ec459fa338ac28b9bb852006562378d13ce615b.zip |
Notes
Diffstat (limited to 'dns/dhisd')
-rw-r--r-- | dns/dhisd/Makefile | 18 | ||||
-rw-r--r-- | dns/dhisd/files/dhisd.sh | 2 | ||||
-rw-r--r-- | dns/dhisd/pkg-comment | 2 | ||||
-rw-r--r-- | dns/dhisd/pkg-descr | 24 |
4 files changed, 24 insertions, 22 deletions
diff --git a/dns/dhisd/Makefile b/dns/dhisd/Makefile index 9a084c42faf1..d0f527866a65 100644 --- a/dns/dhisd/Makefile +++ b/dns/dhisd/Makefile @@ -7,13 +7,13 @@ PORTNAME= dhisd PORTVERSION= 5.1 +PORTREVISION= 1 + CATEGORIES= net MASTER_SITES= http://bsltwr.dhis.org/ftp/pub/dhis/ \ ftp://ftp.dhis.org/pub/dhis/ -MAINTAINER= baskruit@bsltwr.dhis.org - -LIB_DEPENDS= gmp.3:${PORTSDIR}/math/libgmp-freebsd +MAINTAINER= baskruit@bsltwr.dnsalias.org DOCFILES= CONTRIBUTORS COPYRIGHT INSTALL MODULES README @@ -25,12 +25,12 @@ post-patch: do-install: post-install: - @${ECHO_MSG} "===> Installing ${PREFIX}/bin/dhisd." - @${INSTALL_PROGRAM} ${WRKSRC}/dhisd ${PREFIX}/bin - @${ECHO_CMD} "bin/dhisd" >> ${TMPPLIST} - @${ECHO_MSG} "===> Installing ${PREFIX}/bin/genkeys." - @${INSTALL_PROGRAM} ${WRKSRC}/genkeys ${PREFIX}/bin - @${ECHO_CMD} "bin/genkeys" >> ${TMPPLIST} + @${ECHO_MSG} "===> Installing ${PREFIX}/sbin/dhisd." + @${INSTALL_PROGRAM} ${WRKSRC}/dhisd ${PREFIX}/sbin + @${ECHO_CMD} "sbin/dhisd" >> ${TMPPLIST} + @${ECHO_MSG} "===> Installing ${PREFIX}/sbin/sgenkeys." + @${INSTALL_PROGRAM} ${WRKSRC}/genkeys ${PREFIX}/sbin + @${ECHO_CMD} "sbin/genkeys" >> ${TMPPLIST} @${ECHO_MSG} "===> Creating ${PREFIX}/etc/dhis and installing sample db files." @${MKDIR} ${PREFIX}/etc/dhis @${CHMOD} 700 ${PREFIX}/etc/dhis diff --git a/dns/dhisd/files/dhisd.sh b/dns/dhisd/files/dhisd.sh index 0bbedca45dce..d0439e2bdd6d 100644 --- a/dns/dhisd/files/dhisd.sh +++ b/dns/dhisd/files/dhisd.sh @@ -2,7 +2,7 @@ case "$1" in start) - [ -x "__PREFIX__/bin/dhisd" ] && __PREFIX__/bin/dhisd > /dev/null && echo -n ' dhisd' + [ -x "__PREFIX__/sbin/dhisd" ] && __PREFIX__/sbin/dhisd > /dev/null && echo -n ' dhisd' ;; restart) killall -HUP dhisd && echo -n 'dhisd restarted' diff --git a/dns/dhisd/pkg-comment b/dns/dhisd/pkg-comment index 803dc7a57152..3202306c8b32 100644 --- a/dns/dhisd/pkg-comment +++ b/dns/dhisd/pkg-comment @@ -1 +1 @@ -DHIS server for updating dynamic DNS entries in DNS tables +DHIS server for dynamic updates on the server using specific engines diff --git a/dns/dhisd/pkg-descr b/dns/dhisd/pkg-descr index 53d20cd87ba6..edc5f5db3f2e 100644 --- a/dns/dhisd/pkg-descr +++ b/dns/dhisd/pkg-descr @@ -1,22 +1,24 @@ -DHIS Daemon release 4.0 +DHIS Daemon release 5.1 ============================== -dhisd is the DHIS daemon. The deamon is used to update DNS tables on a -running unix based DNS server, running BIND 8.1.2 or higher. It's clients -should run the dhis-client 3 or 4 software to send updates. +The server is now modular through the introduction of a services +sub-system. DNS updates are no longer part of the main code but +are now implemented as a module. -You need a full DNS domain to run this server. You should at least have a -domain hosted for you with a primary and backup dns server and 1 -backup mail-exchanger. +The main dhisd process listens to DHIS clients and after authentication +marks these with their dynamic IP address. The request is passed to a +sub-process through a pipe which implements the services for which the +client is subscribed to. Clients may be subscribed to one or more +services individually. +The sub-engine interface does a basic read from stdin and process. -If you don't know what the previous lines where about, -you probably shouldn't try and run this software. +Examples of things DHIS could update: + Dns, Firewalls, tunnel servers, relay access lists, etc ... For more information on the services of DHIS, you should look at the official DHIS site: http://www.dhis.org/dhis/services/ -For more info on the FreeBSD port, see - http://bsltwr.dhis.org/dhis +For more info on the FreeBSD port: http://bsltwr.dhis.org/dhis WWW: http://bsltwr.dhis.org/dhis/ |