mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-30 08:31:28 -07:00
mysql_db: use --password= instead of -p in dump/import
This commit is contained in:
parent
4bef5dd08b
commit
50fa0898db
1 changed files with 2 additions and 2 deletions
|
@ -109,13 +109,13 @@ def db_delete(cursor, db):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def db_dump(host, user, password, db_name, target):
|
def db_dump(host, user, password, db_name, target):
|
||||||
res = os.system("/usr/bin/mysqldump -q -h "+host+"-u "+user+ " -p"+password+" "
|
res = os.system("/usr/bin/mysqldump -q -h "+host+"-u "+user+ " --password="+password+" "
|
||||||
+db_name+" > "
|
+db_name+" > "
|
||||||
+target)
|
+target)
|
||||||
return (res == 0)
|
return (res == 0)
|
||||||
|
|
||||||
def db_import(host, user, password, db_name, target):
|
def db_import(host, user, password, db_name, target):
|
||||||
res = os.system("/usr/bin/mysql -h "+host+" -u "+user+ " -p"+password+" "
|
res = os.system("/usr/bin/mysql -h "+host+" -u "+user+" --password="+password+" "
|
||||||
+db_name+" < "
|
+db_name+" < "
|
||||||
+target)
|
+target)
|
||||||
return (res == 0)
|
return (res == 0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue