Missing Man-Pages in RELENG_4

Hideyuki KURASHINA rushani at FreeBSD.org
Thu Jan 6 20:59:35 PST 2005


Hi,

>>> On Fri, 7 Jan 2005 00:11:15 +0300, Igor Pokrovsky <ip at doom.homeunix.org> said:

> On Wed, Jan 05, 2005 at 05:26:18PM +0100, Michael Schuh wrote:
> > Hi,
> > 
> > i miss the manpages for ipf.conf ipnat.conf
> > under RELENG_4 last updated 2005-01-05
> > via cvsup.
> 
> I guess this is because there are no those man pages.

That is not true.

  % uname -r
  4.10-RELEASE-p3
  % env PAGER=more apropos ipf.conf
  ipf(5), ipf.conf(5)      - IP packet filter rule syntax
  % env PAGER=more apropos ipnat.conf
  ipnat(5), ipnat.conf(5)  - IP NAT file format

This is due to 

  1. lack of MLINKS in src/sbin/ipf/Makefile (HEAD, RELENG_5 and RELENG_4
     are affected)
  2. revsion 1.6 of src/sbin/ipnat/Makefile is not yet merged to RELENG_4

Darren, could you please commit following patch?  Guido, also please
merge those changes?

Thanks,

-- rushani

Index: Makefile
===================================================================
RCS file: /home/ncvs/src/sbin/ipf/Makefile,v
retrieving revision 1.14
diff -u -r1.14 Makefile
--- Makefile	23 Feb 2004 20:13:52 -0000	1.14
+++ Makefile	7 Jan 2005 04:49:41 -0000
@@ -4,6 +4,8 @@
 
 PROG=	ipf
 MAN=	ipf.4 ipf.5 ipf.8
+MLINKS=	ipf.5 ipf.conf.5 \
+	ipf.5 ipf6.conf.5
 SRCS=	ipf.c parse.c opt.c facpri.c common.c
 CFLAGS+=-DUSE_INET6 -DIPL_NAME=\"/dev/ipl\"
 CFLAGS+=-I${.CURDIR}/../../sys/contrib/ipfilter/netinet


More information about the freebsd-stable mailing list