svn commit: r336602 - in head/sysutils/firstboot-pkgs: . files

Colin Percival cperciva at FreeBSD.org
Mon Dec 16 02:36:24 UTC 2013


Author: cperciva
Date: Mon Dec 16 02:36:23 2013
New Revision: 336602
URL: http://svnweb.freebsd.org/changeset/ports/336602

Log:
  pkg uses "is stdin a terminal?" to decide if it's running interactively
  and thereby whether it should display a progress bar during downloads.
  While rc.d scripts have a terminal attached, for the common case of
  unattended installation of servers, this script is not being used
  interactively; so redirect stdin from /dev/null to silence the progress
  bars and reduce console spew.
  
  The -q option could be used to accomplish this, but that would also
  eliminate other more useful information, such as the names and versions
  of packages being installed.

Modified:
  head/sysutils/firstboot-pkgs/Makefile
  head/sysutils/firstboot-pkgs/files/firstboot_pkgs.in

Modified: head/sysutils/firstboot-pkgs/Makefile
==============================================================================
--- head/sysutils/firstboot-pkgs/Makefile	Mon Dec 16 01:59:25 2013	(r336601)
+++ head/sysutils/firstboot-pkgs/Makefile	Mon Dec 16 02:36:23 2013	(r336602)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	firstboot-pkgs
-PORTVERSION=	1.2
+PORTVERSION=	1.3
 CATEGORIES=	sysutils
 MASTER_SITES=	# none
 DISTFILES=	# none

Modified: head/sysutils/firstboot-pkgs/files/firstboot_pkgs.in
==============================================================================
--- head/sysutils/firstboot-pkgs/files/firstboot_pkgs.in	Mon Dec 16 01:59:25 2013	(r336601)
+++ head/sysutils/firstboot-pkgs/files/firstboot_pkgs.in	Mon Dec 16 02:36:23 2013	(r336602)
@@ -37,7 +37,7 @@ firstboot_pkgs_run()
 
 	# Install requested packages, if any
 	if ! [ -z "$firstboot_pkgs_list" ]; then
-		env ASSUME_ALWAYS_YES=YES pkg install $firstboot_pkgs_list
+		env ASSUME_ALWAYS_YES=YES pkg install $firstboot_pkgs_list </dev/null
 	fi
 
 	# Count rc.d scripts again


More information about the svn-ports-all mailing list