Commit beec4bb4 authored by Łukasz Nowak's avatar Łukasz Nowak

- fix logic, as mysqld was not started after database initialisation

 - be clear and inform what is being started


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44201 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 4d86898a
......@@ -27,8 +27,9 @@ def runMysql(args):
print "Mysql properly initialised"
break
else:
print "MySQL already initalised, starting"
os.execl(mysqld_wrapper_list[0], *mysqld_wrapper_list)
print "MySQL already initialised"
print "Starting ",mysqld_wrapper_list[0]
os.execl(mysqld_wrapper_list[0], *mysqld_wrapper_list)
def updateMysql(args):
......
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