Searched refs:source_material (Results 1 – 4 of 4) sorted by relevance
138 def unarchive(host, source_material): argument159 if (source_material.endswith(".gz") or160 source_material.endswith(".gzip")):161 host.run('gunzip "%s"' % (utils.sh_escape(source_material)))162 source_material= ".".join(source_material.split(".")[:-1])163 elif source_material.endswith("bz2"):164 host.run('bunzip2 "%s"' % (utils.sh_escape(source_material)))165 source_material= ".".join(source_material.split(".")[:-1])168 if source_material.endswith(".tar"):170 utils.sh_escape(os.path.dirname(source_material)),[all …]
15 source_material= None variable in InstallableObject34 self.source_material= utils.get(location)
327 light_files = [os.path.join(self.source_material, f)328 for f in os.listdir(self.source_material)397 if self.source_material:405 host.send_file(self.source_material, autodir, delete_dest=True)407 self.source_material)427 if self.installed and self.source_material:
329 self.source_material = self.repodir