Searched refs:source_material (Results 1 – 4 of 4) sorted by relevance
144 def unarchive(host, source_material): argument165 if (source_material.endswith(".gz") or166 source_material.endswith(".gzip")):167 host.run('gunzip "%s"' % (utils.sh_escape(source_material)))168 source_material= ".".join(source_material.split(".")[:-1])169 elif source_material.endswith("bz2"):170 host.run('bunzip2 "%s"' % (utils.sh_escape(source_material)))171 source_material= ".".join(source_material.split(".")[:-1])174 if source_material.endswith(".tar"):176 utils.sh_escape(os.path.dirname(source_material)),[all …]
15 source_material= None variable in InstallableObject34 self.source_material= utils.get(location)
311 light_files = [os.path.join(self.source_material, f)312 for f in os.listdir(self.source_material)381 if self.source_material:389 host.send_file(self.source_material, autodir, delete_dest=True)391 self.source_material)411 if self.installed and self.source_material:
388 self.source_material = self.repodir