install finish

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
remotes/origin/feature_files_export
Nico Schottelius 14 years ago
parent f84cabffe3
commit 820eea56fb
  1. 2
      lib/cdist/config_install.py
  2. 4
      lib/cdist/type.py

@ -68,7 +68,7 @@ class ConfigInstall:
log.info("Running global explorers")
explorers = self.path.list_global_explorers()
if(len(explorers) == 0):
raise CdistError("No explorers found in", self.path.global_explorer_dir)
raise CdistError("No explorers found in ", self.path.global_explorer_dir)
self.path.transfer_global_explorers()
for explorer in explorers:

4
lib/cdist/type.py vendored

@ -46,6 +46,10 @@ class Type(object):
"""Check whether a type is used for installation (if not: for configuration)"""
return os.path.isfile(os.path.join(self.path, "install"))
def explorer_dir(self):
"""Return remote directory that holds the explorers of a type"""
return os.path.join(self.remote_path, "explorer")
def remote_explorer_dir(self):
"""Return remote directory that holds the explorers of a type"""
return os.path.join(self.remote_path, "explorer")

Loading…
Cancel
Save