diff options
author | sada <sada@FreeBSD.org> | 2002-05-23 08:25:57 +0000 |
---|---|---|
committer | sada <sada@FreeBSD.org> | 2002-05-23 08:25:57 +0000 |
commit | 1eb780385fc09134ba29817aa1e8faff5d904b00 (patch) | |
tree | b9d260ed443a058d2be9ce83453a1a0382894edf /dns | |
parent | edbb5edff59330025339bbfc0b38685abb1bb7dc (diff) | |
download | FreeBSD-ports-1eb780385fc09134ba29817aa1e8faff5d904b00.zip FreeBSD-ports-1eb780385fc09134ba29817aa1e8faff5d904b00.tar.gz |
- Move install directory from bin to sbin
- Rewrite descriptions
- Change maintainer's email
Diffstat (limited to 'dns')
-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 9a084c4..d0f5278 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 0bbedca..d0439e2 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 803dc7a..3202306 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 53d20cd..edc5f5d 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/ |