Option to choose number of MySQL Instances!

This commit is contained in:
usmannasir
2018-05-29 20:20:05 +05:00
parent 04f89b92d0
commit 659f2014b4
1631 changed files with 418789 additions and 258 deletions

11
install-two/installLog.py Normal file
View File

@@ -0,0 +1,11 @@
import time
class InstallLog:
fileName = "/var/log/installLogs.txt"
@staticmethod
def writeToFile(message):
file = open(InstallLog.fileName,'a')
file.writelines("[" + time.strftime(
"%I-%M-%S-%a-%b-%Y") + "] "+message + "\n")
file.close()