svn commit: r237177 - projects/portbuild/qmanager
Mark Linimon
linimon at FreeBSD.org
Sun Jun 17 00:28:58 UTC 2012
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 )
More information about the svn-src-projects
mailing list