Merge pull request #4307 from damianmoore/mysql_gzip_bzip2_support
Add support for compressing mysql dumps and extracting during import.
This commit is contained in:
commit
f7db64d69b
1 changed files with 12 additions and 2 deletions
|
@ -124,6 +124,11 @@ def db_dump(module, host, user, password, db_name, target, socket=None):
|
|||
else:
|
||||
cmd += " --host=%s" % host
|
||||
cmd += " %s" % db_name
|
||||
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,6 +141,11 @@ def db_import(module, host, user, password, db_name, target, socket=None):
|
|||
else:
|
||||
cmd += " --host=%s" % host
|
||||
cmd += " -D %s" % db_name
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue