From owner-svn-src-projects@FreeBSD.ORG Sun Jun 17 00:28:58 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63F52106566B; Sun, 17 Jun 2012 00:28:58 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4F8AC8FC08; Sun, 17 Jun 2012 00:28:58 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q5H0Swtk074384; Sun, 17 Jun 2012 00:28:58 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q5H0Sw0u074382; Sun, 17 Jun 2012 00:28:58 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201206170028.q5H0Sw0u074382@svn.freebsd.org> From: Mark Linimon Date: Sun, 17 Jun 2012 00:28:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r237177 - projects/portbuild/qmanager X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2012 00:28:58 -0000 Author: linimon (doc,ports committer) Date: Sun Jun 17 00:28:57 2012 New Revision: 237177 URL: http://svn.freebsd.org/changeset/base/237177 Log: Make the dump of machines table more verbose. Modified: projects/portbuild/qmanager/dumpdb.py Modified: projects/portbuild/qmanager/dumpdb.py ============================================================================== --- projects/portbuild/qmanager/dumpdb.py Sun Jun 17 00:27:06 2012 (r237176) +++ projects/portbuild/qmanager/dumpdb.py Sun Jun 17 00:28:57 2012 (r237177) @@ -104,12 +104,27 @@ def show_machines( session ): for machine in machines: print + # String print "name: %s" % machine.name - # list - print "acl: " + str( machine.acl ) - # boolean + # Integer + print "maxjobs: " + str( machine.maxjobs ) + # Integer + print "osversion: " + str( machine.osversion ) + # Integer + print "arch: " + str( machine.arch ) + # String + print "domain: " + machine.domain + # String + print "primarypool: " + machine.primarypool + # PickleType + print "pools: " + str( machine.pools ) + # Integer + print "numcpus: " + str( machine.numcpus ) + # Boolean print "haszfs: " + str( machine.haszfs ) - # boolean + # PickleType + print "acl: " + str( machine.acl ) + # Boolean print "online: " + str( machine.online )