mysql_db: use --password= instead of -p in dump/import
This commit is contained in:
parent
f9a15486e3
commit
0f4bded9d5
1 changed files with 2 additions and 2 deletions
4
mysql_db
4
mysql_db
|
@ -109,13 +109,13 @@ def db_delete(cursor, db):
|
|||
return True
|
||||
|
||||
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+" > "
|
||||
+target)
|
||||
return (res == 0)
|
||||
|
||||
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+" < "
|
||||
+target)
|
||||
return (res == 0)
|
||||
|
|
Loading…
Reference in a new issue