implement list_type_explorer_names

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
remotes/origin/feature_files_export
Steven Armstrong 14 years ago
parent fb4d20e7e8
commit 8fb51a396a
  1. 5
      lib/cdist/core/explorer.py

@ -92,6 +92,11 @@ class Explorer(object):
### type
def list_type_explorer_names(self, cdist_type):
"""Return a list of explorer names for the given type."""
source = os.path.join(self.local.type_path, cdist_type.explorer_path)
return os.listdir(source)
def transfer_type_explorers(self, cdist_type):
"""Transfer the type explorers for the given type to the remote side."""
source = os.path.join(self.local.type_path, cdist_type.explorer_path)

Loading…
Cancel
Save