Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Feb 2013 12:42:09 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r246790 - head/usr.sbin/pkg
Message-ID:  <201302141242.r1ECg9va007871@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Thu Feb 14 12:42:09 2013
New Revision: 246790
URL: http://svnweb.freebsd.org/changeset/base/246790

Log:
  In case of failure of the pkg boostrap advice the user to either change the
  PACKAGESITE they use or install from ports directly indicating where the port
  is localted in the port collection
  
  Submitted by:	kientzle

Modified:
  head/usr.sbin/pkg/pkg.c

Modified: head/usr.sbin/pkg/pkg.c
==============================================================================
--- head/usr.sbin/pkg/pkg.c	Thu Feb 14 12:22:40 2013	(r246789)
+++ head/usr.sbin/pkg/pkg.c	Thu Feb 14 12:42:09 2013	(r246790)
@@ -411,6 +411,8 @@ bootstrap_pkg(void)
 
 fetchfail:
 	warnx("Error fetching %s: %s", url, fetchLastErrString);
+	fprintf(stderr, "A pre-built version of pkg could not be found for your system.\n");
+	fprintf(stderr, "Consider changing PACKAGESITE or installing it from ports: 'ports-mgmt/pkg'.\n");
 
 cleanup:
 	if (remote != NULL)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302141242.r1ECg9va007871>