iso

   1 Help on module iso:
   2 
   3 NAME
   4 #    iso - All commands use bsdtar and accept a logmethod to use for logging.
   5 
   6 FILE
   7 #    utah/utah/iso.py
   8 
   9 FUNCTIONS
  10     dump(image, filename, logmethod=None, **kw)
  11 #        Return a subprocess dumping a file in an iso to standard out, passing any additional keyword arguments to the subprocess.
  12     
  13     extract(image, filename, outdir=None, outfile=None, logmethod=None, **kw)
  14 #        Return a subprocess to extract a file from an iso, passing any additional keyword arguments to the subprocess.
  15 #        If outfile is None, extract to standard out.
  16 #        If outdir is present and outfile is None, extract the file to outdir with the same name.
  17 #        If outdir and outfile are both present, extract to outfile in outdir.
  18 #        If the file is a hardlink, extract the actual file.
  19 #        If the file is a symlink, return a command to create the symlink.
  20     
  21     getrealfile(image, filename, outdir=None, logmethod=None)
  22 #        Return a command to safely extract a file from an iso.
  23 #        Based on unbsdtar-safelink from ubuntu iso testing.
  24     
  25     listfiles(image, logmethod=None, returnlist=False)
  26 #        Return either a subprocess instance listing the contents of an iso, or a list of files in the iso if returnlist is True.

QATeam/AutomatedTesting/UbuntuAutomationTestHarness/iso (last edited 2012-07-19 13:17:56 by c-98-223-36-80)