mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-09 23:00:56 +00:00
fix: use db_root_username
This commit is contained in:
parent
1bd9615c1e
commit
d6057e3f18
@ -80,7 +80,7 @@ def main():
|
|||||||
db_name = site_config.get('db_name')
|
db_name = site_config.get('db_name')
|
||||||
db_password = site_config.get('db_password')
|
db_password = site_config.get('db_password')
|
||||||
|
|
||||||
mysql_command = ["mysql", f"-h{db_host}", f"-u{mariadb_root_username}", f"-p{mariadb_root_password}", "-e"]
|
mysql_command = ["mysql", f"-h{db_host}", f"-u{db_root_username}", f"-p{mariadb_root_password}", "-e"]
|
||||||
|
|
||||||
# Drop User if exists
|
# Drop User if exists
|
||||||
command = mysql_command + [f"DROP USER IF EXISTS '{db_name}'@'%'; FLUSH PRIVILEGES;"]
|
command = mysql_command + [f"DROP USER IF EXISTS '{db_name}'@'%'; FLUSH PRIVILEGES;"]
|
||||||
|
Loading…
Reference in New Issue
Block a user