File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -86,16 +86,11 @@ MySQL Backups
8686===========
8787MySQL backups are done through the mysqlbackup.py script.
8888
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-
9489Use the -h or the --help flag to get a listing of options.
9590
9691 mysqlbackup.py [-hkdbups]
9792 [-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
9994 [-d | --databases] a comma separated list of databases
10095 [-t | --store] directory locally to store the backups
10196 [-u | --user] the database user
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ def backup(self):
103103def usage ():
104104 usage = ["mysqlbackup.py [-hkdbups]\n " ]
105105 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 " )
107107 usage .append (" [-d | --databases] a comma separated list of databases\n " )
108108 usage .append (" [-t | --store] directory locally to store the backups\n " )
109109 usage .append (" [-u | --user] the database user\n " )
You can’t perform that action at this time.
0 commit comments