summaryrefslogtreecommitdiffstats
path: root/func/overlord/inventory.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2007-12-17 12:18:45 -0500
committerMichael DeHaan <mdehaan@redhat.com>2007-12-17 12:18:45 -0500
commit9806fbbebb7d9e28cc58ab5388ad646ffbf7ebb6 (patch)
tree82ef2ab118e367048eaa5fde851acdb14713c7a6 /func/overlord/inventory.py
parent0dfe68bf49ba03d3fb46bc6d6d87f4085db0d18b (diff)
downloadthird_party-func-9806fbbebb7d9e28cc58ab5388ad646ffbf7ebb6.tar.gz
third_party-func-9806fbbebb7d9e28cc58ab5388ad646ffbf7ebb6.tar.xz
third_party-func-9806fbbebb7d9e28cc58ab5388ad646ffbf7ebb6.zip
Added inventory module for mount, though something has broken func-inventory's ability to query remote modules and I am still chasing what that is.
Diffstat (limited to 'func/overlord/inventory.py')
-rwxr-xr-xfunc/overlord/inventory.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/func/overlord/inventory.py b/func/overlord/inventory.py
index 8bb5942..28a269e 100755
--- a/func/overlord/inventory.py
+++ b/func/overlord/inventory.py
@@ -98,7 +98,12 @@ class FuncInventory(object):
if options.verbose:
print "---- scanning module: %s" % module_name
host_module = getattr(func_client.Client(host,noglobs=True),module_name)
+ if options.verbose:
+ print "--- DEBUG: remote module: %s" % host_module
+
remote_methods = host_module.list_methods()
+ if options.verbose:
+ print "--- DEBUG: available remote methods: %s" % remote_methods
for remote_method in remote_methods:
if ("all" in filtered_function_list) or (remote_method in filtered_function_list):
if options.verbose: