Module Name:    src
Committed By:   martin
Date:           Wed Aug  8 14:36:55 UTC 2012

Modified Files:
        src/etc [netbsd-6]: daily weekly

Log Message:
Pull up following revision(s) (requested by jdf in ticket #458):
        etc/weekly: revision 1.28
        etc/daily: revision 1.84
Call `makemandb -f -q` instead of `makemandb -f`, as Edgar Fuss proposed for 
daily.
Call `makemandb -q` instead of `makemandb`, as proposed by Edgar Fuss on
tech-userlevel on 20th of July 2012, 12:38.


To generate a diff of this commit:
cvs rdiff -u -r1.80.2.3 -r1.80.2.4 src/etc/daily
cvs rdiff -u -r1.25.2.1 -r1.25.2.2 src/etc/weekly

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/daily
diff -u src/etc/daily:1.80.2.3 src/etc/daily:1.80.2.4
--- src/etc/daily:1.80.2.3	Wed Aug  8 14:31:33 2012
+++ src/etc/daily	Wed Aug  8 14:36:55 2012
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#	$NetBSD: daily,v 1.80.2.3 2012/08/08 14:31:33 martin Exp $
+#	$NetBSD: daily,v 1.80.2.4 2012/08/08 14:36:55 martin Exp $
 #	@(#)daily	8.2 (Berkeley) 1/25/94
 #
 
@@ -304,7 +304,7 @@ if checkyesno run_makemandb; then
 	if [ -f /etc/man.conf -a -x /usr/sbin/makemandb ]; then
 		echo ""
 		echo "Updating man page index:"
-		(umask 022; nice -n 5 /usr/sbin/makemandb)
+		(umask 022; nice -n 5 /usr/sbin/makemandb -q)
 	fi
 fi
 

Index: src/etc/weekly
diff -u src/etc/weekly:1.25.2.1 src/etc/weekly:1.25.2.2
--- src/etc/weekly:1.25.2.1	Thu Feb 16 19:56:43 2012
+++ src/etc/weekly	Wed Aug  8 14:36:55 2012
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#	$NetBSD: weekly,v 1.25.2.1 2012/02/16 19:56:43 riz Exp $
+#	$NetBSD: weekly,v 1.25.2.2 2012/08/08 14:36:55 martin Exp $
 #	from: @(#)weekly	8.2 (Berkeley) 1/2/94
 #
 
@@ -94,7 +94,7 @@ if checkyesno rebuild_mandb; then
 	echo ""
 	if [ -f /etc/man.conf -a -x /usr/sbin/makemandb ]; then
 		echo "Rebuilding man page index:"
-		(umask 022; nice -n 5 /usr/sbin/makemandb -f)
+		(umask 022; nice -n 5 /usr/sbin/makemandb -f -q)
 	else
 		echo "Not rebuilding man page index"
 	fi

Reply via email to