Commit 6cdc9928 by James Tanner

Merge pull request #4307 from damianmoore/mysql_gzip_bzip2_support

Add support for compressing mysql dumps and extracting during import.
parents bb621385 3c57168a
......@@ -124,7 +124,12 @@ def db_dump(module, host, user, password, db_name, target, socket=None):
else:
cmd += " --host=%s" % host
cmd += " %s" % db_name
cmd += " > %s" % target
if os.path.splitext(target)[-1] == '.gz':
cmd = cmd + ' | gzip > ' + target
elif os.path.splitext(target)[-1] == '.bz2':
cmd = cmd + ' | bzip2 > ' + target
else:
cmd += " > %s" % target
rc, stdout, stderr = module.run_command(cmd)
return rc, stdout, stderr
......@@ -136,7 +141,12 @@ def db_import(module, host, user, password, db_name, target, socket=None):
else:
cmd += " --host=%s" % host
cmd += " -D %s" % db_name
cmd += " < %s" % target
if os.path.splitext(target)[-1] == '.gz':
cmd = 'gunzip < ' + target + ' | ' + cmd
elif os.path.splitext(target)[-1] == '.bz2':
cmd = 'bunzip2 < ' + target + ' | ' + cmd
else:
cmd += " < %s" % target
rc, stdout, stderr = module.run_command(cmd)
return rc, stdout, stderr
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment