diff options
author | martti <martti@pkgsrc.org> | 2001-12-15 09:05:07 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2001-12-15 09:05:07 +0000 |
commit | fe5d684d49a7f1610aa2eec478c7a25f769334e0 (patch) | |
tree | 5559dd9d4a28dfaa7f0179ba795a4053e3c63a10 /sysutils/etcupdate | |
parent | fa4a2e982a41245d0723e2064f0b7685d23809fe (diff) | |
download | pkgsrc-fe5d684d49a7f1610aa2eec478c7a25f769334e0.tar.gz |
* Don't display temporary files (.etcupdate.filename)
* A minor manual page fix
Diffstat (limited to 'sysutils/etcupdate')
-rw-r--r-- | sysutils/etcupdate/Makefile | 4 | ||||
-rwxr-xr-x | sysutils/etcupdate/files/etcupdate | 4 | ||||
-rw-r--r-- | sysutils/etcupdate/files/etcupdate.8 | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sysutils/etcupdate/Makefile b/sysutils/etcupdate/Makefile index bb2ec147b4f..1ead7ff6a2c 100644 --- a/sysutils/etcupdate/Makefile +++ b/sysutils/etcupdate/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2001/12/12 10:08:42 martti Exp $ +# $NetBSD: Makefile,v 1.10 2001/12/15 09:05:07 martti Exp $ -DISTNAME= etcupdate-20011212 +DISTNAME= etcupdate-20011215 CATEGORIES= sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/sysutils/etcupdate/files/etcupdate b/sysutils/etcupdate/files/etcupdate index 3f7ecc48364..4ff58bf135a 100755 --- a/sysutils/etcupdate/files/etcupdate +++ b/sysutils/etcupdate/files/etcupdate @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: etcupdate,v 1.10 2001/12/12 10:08:43 martti Exp $ +# $NetBSD: etcupdate,v 1.11 2001/12/15 09:05:08 martti Exp $ # # Copyright (c) 2001 The NetBSD Foundation, Inc. # All rights reserved. @@ -397,7 +397,7 @@ fi # Start the comparision echo "*** Checking for added/modified files" -for i in `find ${TEMPROOT} -type f`; do +for i in `find ${TEMPROOT} -type f -a ! -name \*.etcupdate.\*`; do D=`echo ${i} | sed "s#${TEMPROOT}##"` diff_and_merge_file "${D}" done diff --git a/sysutils/etcupdate/files/etcupdate.8 b/sysutils/etcupdate/files/etcupdate.8 index 5e1e1c527ae..32ea926adce 100644 --- a/sysutils/etcupdate/files/etcupdate.8 +++ b/sysutils/etcupdate/files/etcupdate.8 @@ -1,4 +1,4 @@ -.\" $NetBSD: etcupdate.8,v 1.6 2001/12/01 11:42:09 martti Exp $ +.\" $NetBSD: etcupdate.8,v 1.7 2001/12/15 09:05:08 martti Exp $ .\" .\" Copyright (c) 2001 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -178,7 +178,7 @@ do something like this: .Pp .Dl mkdir /tmp/temproot .Dl cd /tmp/temproot -.Dl tar xzf /some/where/etc.tgz +.Dl tar xpzf /some/where/etc.tgz .Dl etcupdate -b /tmp/temproot .Pp To get a better idea what's going on, use the |