Searched refs:source_material (Results 1 – 5 of 5) 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)
210 light_files = [os.path.join(self.source_material, f)211 for f in os.listdir(self.source_material)280 if self.source_material:288 host.send_file(self.source_material, autodir, delete_dest=True)290 self.source_material)
151 if self.installed and self.source_material:
329 self.source_material = self.repodir