Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Jun 2012 00:28:58 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r237177 - projects/portbuild/qmanager
Message-ID:  <201206170028.q5H0Sw0u074382@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 )
 
 



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