Module Name:    src
Committed By:   wiz
Date:           Wed Aug 29 20:34:19 UTC 2012

Modified Files:
        src/etc: daily weekly
        src/etc/rc.d: makemandb

Log Message:
Use new makemandb -Q flag to be really quiet.


To generate a diff of this commit:
cvs rdiff -u -r1.86 -r1.87 src/etc/daily
cvs rdiff -u -r1.28 -r1.29 src/etc/weekly
cvs rdiff -u -r1.3 -r1.4 src/etc/rc.d/makemandb

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.86 src/etc/daily:1.87
--- src/etc/daily:1.86	Fri Aug  3 10:52:46 2012
+++ src/etc/daily	Wed Aug 29 20:34:18 2012
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#	$NetBSD: daily,v 1.86 2012/08/03 10:52:46 christos Exp $
+#	$NetBSD: daily,v 1.87 2012/08/29 20:34:18 wiz 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 -q)
+		(umask 022; nice -n 5 /usr/sbin/makemandb -Q)
 	fi
 fi
 

Index: src/etc/weekly
diff -u src/etc/weekly:1.28 src/etc/weekly:1.29
--- src/etc/weekly:1.28	Tue Jul 31 12:11:50 2012
+++ src/etc/weekly	Wed Aug 29 20:34:19 2012
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#	$NetBSD: weekly,v 1.28 2012/07/31 12:11:50 jdf Exp $
+#	$NetBSD: weekly,v 1.29 2012/08/29 20:34:19 wiz 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 -q)
+		(umask 022; nice -n 5 /usr/sbin/makemandb -f -Q)
 	else
 		echo "Not rebuilding man page index"
 	fi

Index: src/etc/rc.d/makemandb
diff -u src/etc/rc.d/makemandb:1.3 src/etc/rc.d/makemandb:1.4
--- src/etc/rc.d/makemandb:1.3	Sun Jun 17 02:13:13 2012
+++ src/etc/rc.d/makemandb	Wed Aug 29 20:34:19 2012
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: makemandb,v 1.3 2012/06/17 02:13:13 isaki Exp $
+# $NetBSD: makemandb,v 1.4 2012/08/29 20:34:19 wiz Exp $
 #
 
 # PROVIDE: makemandb
@@ -18,7 +18,7 @@ stop_cmd=":"
 makemandb_start()
 {
 	# Initiate update build in the background
-	nice -n 5 /usr/sbin/makemandb -q > /dev/null 2>&1 &
+	nice -n 5 /usr/sbin/makemandb -Q > /dev/null 2>&1 &
 }
 
 load_rc_config $name

Reply via email to