File tree 2 files changed +2
-7
lines changed
2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -86,16 +86,11 @@ MySQL Backups
86
86
===========
87
87
MySQL backups are done through the mysqlbackup.py script.
88
88
89
- A pid file is placed into the system temp directory to prevent concurrent
90
- backups from running at once. The script provides options for the number of
91
- backups to keep. After the max number of backups is reached, backups are
92
- deleted starting with the oldest backup first.
93
-
94
89
Use the -h or the --help flag to get a listing of options.
95
90
96
91
mysqlbackup.py [-hkdbups]
97
92
[-h | --help] prints this help and usage message
98
- [-k | --keep] number of backups to keep before deleting
93
+ [-k | --keep] number of days to keep backups before deleting
99
94
[-d | --databases] a comma separated list of databases
100
95
[-t | --store] directory locally to store the backups
101
96
[-u | --user] the database user
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ def backup(self):
103
103
def usage ():
104
104
usage = ["mysqlbackup.py [-hkdbups]\n " ]
105
105
usage .append (" [-h | --help] prints this help and usage message\n " )
106
- usage .append (" [-k | --keep] number of backups to keep before deleting\n " )
106
+ usage .append (" [-k | --keep] number of days to keep backups before deleting\n " )
107
107
usage .append (" [-d | --databases] a comma separated list of databases\n " )
108
108
usage .append (" [-t | --store] directory locally to store the backups\n " )
109
109
usage .append (" [-u | --user] the database user\n " )
You can’t perform that action at this time.
0 commit comments