|
|
@ -135,10 +135,11 @@ def initDreplace(version=''): |
|
|
|
if not os.path.exists(mysql_conf_dir): |
|
|
|
if not os.path.exists(mysql_conf_dir): |
|
|
|
os.mkdir(mysql_conf_dir) |
|
|
|
os.mkdir(mysql_conf_dir) |
|
|
|
|
|
|
|
|
|
|
|
mysql_tmp = getServerDir() + '/tmp' |
|
|
|
tmp_dir = getServerDir() + '/tmp' |
|
|
|
if not os.path.exists(mysql_tmp): |
|
|
|
if not os.path.exists(tmp_dir): |
|
|
|
os.mkdir(mysql_tmp) |
|
|
|
os.mkdir(tmp_dir) |
|
|
|
mw.execShell("chown -R mysql:mysql " + mysql_tmp) |
|
|
|
mw.execShell("chown -R mysql:mysql " + tmp_dir) |
|
|
|
|
|
|
|
mw.execShell("chmod 750 " + tmp_dir) |
|
|
|
|
|
|
|
|
|
|
|
mysql_conf = mysql_conf_dir + '/my.cnf' |
|
|
|
mysql_conf = mysql_conf_dir + '/my.cnf' |
|
|
|
if not os.path.exists(mysql_conf): |
|
|
|
if not os.path.exists(mysql_conf): |
|
|
|