-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.py
57 lines (34 loc) · 1.21 KB
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/python
#-*- coding=utf-8 -*-
import sys, time
import ConfigParser
import Backup
argument = sys.argv[:]
if len(argument) <= 1:
print "Missing necessary parameters named --db-type, Please use ex, `python run.py db`"
exit(1)
useDb = argument[1]
cp = ConfigParser.ConfigParser()
cp.read('./config.conf')
dbList = cp.sections()
if useDb not in dbList:
print "Please use correct db item in %s" %dbList
exit(1)
options = {
'db': {
'host': cp.get(useDb, 'host'),
'user': cp.get(useDb, 'user'),
'password': cp.get(useDb, 'password')
},
'baseDirectory':'/home/aaaa/test/backup/'
}
startTime = time.time()
backup = Backup.Backup(options)
backup.log("INFO", "========================== START ========================================")
backup.run()
endTime = time.time()
backup.log("INFO", "========================== END ========================================")
runningTime = endTime - startTime
backup.log("INFO", "running time: %.2f" %runningTime)
mailContent = backup.mail_contents + "<br><br>数据库Host: %s 备份成功, 本次备份耗时: %.2f秒" %(options['db']['host'], runningTime)
backup.sendMail('a@example.com', 'MySQL 数据库备份', mailContent)