Add new port -- Resolver re-initialization NSS module.

This commit is contained in:
Hajimu UMEMOTO 2006-04-12 13:02:44 +00:00
parent a6f7588d4d
commit 3a2ac39b8d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=159372
4 changed files with 41 additions and 0 deletions

View file

@ -60,6 +60,7 @@
SUBDIR += nsd
SUBDIR += nslint
SUBDIR += nsping
SUBDIR += nss_resinit
SUBDIR += odsclient
SUBDIR += p5-BIND-Conf_Parser
SUBDIR += p5-DNS-Config

28
dns/nss_resinit/Makefile Normal file
View file

@ -0,0 +1,28 @@
# New ports collection makefile for: nss_resinit
# Date Created: Apr 11 2006
# Whom: Hajimu UMEMOTO <ume@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= nss_resinit
PORTVERSION= 20060412
#PORTREVISION= 0
CATEGORIES= dns
MASTER_SITES= http://www.imasy.or.jp/~ume/FreeBSD/
MAINTAINER= ume@FreeBSD.org
COMMENT= Resolver re-initialization NSS module
PLIST_FILES= lib/nss_resinit.so lib/nss_resinit.so.1
MAN8= nss_resinit.8
MANCOMPRESSED= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500112
IGNORE= name-service switch support in libc is required
.endif
.include <bsd.port.post.mk>

3
dns/nss_resinit/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (nss_resinit-20060412.tar.gz) = a17116552c08e62cc16cb63c3c95f5f0
SHA256 (nss_resinit-20060412.tar.gz) = 535c3e74fea4f9c24cc5e99f944e440d18844387888cc792e998b6db710849f1
SIZE (nss_resinit-20060412.tar.gz) = 3591

View file

@ -0,0 +1,9 @@
The nss_resinit is a module for the nsswitch subsystem which makes
resolver(3) reread /etc/resolv.conf when it is updated. In the
traditional implementation of resolver(3) it is initialized by the
application once and never reread /etc/resolv.conf after that even if
the file is updated. This module is useful especially when name
servers in /etc/resolv.conf are changed frequently as seen in mobile
environment.
- Hajimu UMEMOTO <ume@FreeBSD.org>